IRP

Read dataset

source("00_dataset.R")

head(trainingSet)
##   outcome    Height Temperature Smoking.0 Smoking.1 `KPS score`90 `KPS score`70
## 1    zero 0.6428571       0.075         0         1             0             0
## 2    zero 0.5238095       0.150         0         1             0             1
## 3    zero 0.8095238       0.100         0         1             0             0
## 4    zero 0.6190476       0.200         0         1             0             0
## 5    zero 0.7619048       0.225         0         1             0             0
## 6    zero 0.0000000       0.200         1         0             0             0
##   `KPS score`80 `Number of underlying diseases`0
## 1             1                                0
## 2             0                                0
## 3             1                                0
## 4             1                                0
## 5             1                                0
## 6             1                                0
##   `Number of underlying diseases`1 `Number of underlying diseases`2
## 1                                0                                1
## 2                                1                                0
## 3                                1                                0
## 4                                0                                1
## 5                                1                                0
## 6                                0                                1
##   `Previous lung disease`0 `Previous lung disease`1 `ICIs drugs`1 `ICIs drugs`2
## 1                        1                        0             0             0
## 2                        1                        0             0             1
## 3                        0                        1             0             1
## 4                        0                        1             0             0
## 5                        1                        0             0             1
## 6                        0                        1             0             0
##   `ICIs drugs`3 `ICIs drugs`4 `ICIs drugs`5 `ICIs drugs`6 `ICIs drugs`7
## 1             0             0             0             0             1
## 2             0             0             0             0             0
## 3             0             0             0             0             0
## 4             0             1             0             0             0
## 5             0             0             0             0             0
## 6             0             0             0             0             1
##   `ICIs drugs`8 `ICIs dosage`1 `ICIs dosage`2 `Course of treatment`
## 1             0              1              0               0.03125
## 2             0              1              0               0.00000
## 3             0              1              0               0.37500
## 4             0              0              1               0.12500
## 5             0              1              0               0.00000
## 6             0              1              0               0.03125
##   `Number of combined antitumor drugs`0 `Number of combined antitumor drugs`1
## 1                                     0                                     1
## 2                                     0                                     1
## 3                                     0                                     1
## 4                                     0                                     1
## 5                                     0                                     1
## 6                                     1                                     0
##   `Number of combined drugs`0 `Number of combined drugs`1
## 1                           1                           0
## 2                           0                           1
## 3                           1                           0
## 4                           1                           0
## 5                           1                           0
## 6                           0                           1
##   `Previous treatment_yn`0 `Previous treatment_yn`1
## 1                        0                        1
## 2                        0                        1
## 3                        0                        1
## 4                        1                        0
## 5                        0                        1
## 6                        0                        1
##   `Number of previous treatment drugs`0 `Number of previous treatment drugs`1
## 1                                     0                                     1
## 2                                     0                                     1
## 3                                     0                                     1
## 4                                     1                                     0
## 5                                     0                                     1
## 6                                     0                                     1
##   `Percentage of CD4 lymphocytes` `Percentage of NK cell`
## 1                       0.4529781               0.3744186
## 2                       0.4130094               0.2139535
## 3                       0.2115987               0.3627907
## 4                       0.4028213               0.1279070
## 5                       0.1927900               0.8139535
## 6                       0.4130094               0.2930233
##   `Percentage of  T lymphocytes` `Percentage of eosinophilus cells`
## 1                      0.4557143                         0.13793103
## 2                      0.6471429                         0.15862069
## 3                      0.6842857                         0.08965517
## 4                      0.8842857                         0.15862069
## 5                      0.1300000                         0.16551724
## 6                      0.6471429                         0.08965517
##   `Percentage of neutrophilic granulocyte`
## 1                                0.7089744
## 2                                0.9243590
## 3                                0.5076923
## 4                                0.6500000
## 5                                0.6551282
## 6                                0.7384615

Feature selection

Feature selection (Recursive Feature Elimination)

set.seed(355)

rfFuncs$summary <- BigSummary

objectives =   'auc_ap_sbr'# "SBrier"
  
  
  


x_tmp = trainingSet[,c(2:ncol(trainingSet))]

y_tmp = trainingSet[,1]

rfProfile <- rfe(x_tmp,y_tmp, sizes=c(1:ncol(trainingSet)), rfeControl=rfeControl(rfFuncs,
                                                                                  method = "repeatedcv",                                                                          repeats = 10,
                number = 3
              ),

                 metric=objectives)

viz feature selection output

trellis.par.set(caretTheme())
plot(rfProfile, type = c("g", "o"))

predictors(rfProfile) 
##  [1] "`ICIs drugs`7"                           
##  [2] "`Number of underlying diseases`2"        
##  [3] "`ICIs drugs`8"                           
##  [4] "`Percentage of NK cell`"                 
##  [5] "`Number of underlying diseases`0"        
##  [6] "`Previous lung disease`0"                
##  [7] "`Previous lung disease`1"                
##  [8] "`ICIs drugs`5"                           
##  [9] "Temperature"                             
## [10] "`ICIs drugs`3"                           
## [11] "`ICIs drugs`2"                           
## [12] "`Percentage of neutrophilic granulocyte`"

Tuning

Tune and build model

twoClassCtrl <- trainControl(
  method = "repeatedcv",
  number = 3,
  repeats = 10, #for repeatedcv
  savePredictions = "final",
  classProbs = T,
  summaryFunction = BigSummary, 
  sampling = "up"
)

set.seed(355)
glmnet_m <- train(outcome ~., data = trainingSet1, method = "glmnet",  metric = objectives,  trControl = twoClassCtrl, tuneLength = 20)

rf_m <- train(outcome ~., data = trainingSet1, method = "rf",  metric = objectives,  trControl = twoClassCtrl, tuneLength = 10)

xgb_m <- train(outcome ~., data = trainingSet1, method = "xgbTree",  metric = objectives,  trControl = twoClassCtrl)
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:04:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:18] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:19] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:20] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:21] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:22] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:23] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:24] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:25] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:26] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:27] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:28] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:29] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:30] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:31] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:32] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:33] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:34] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:35] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:36] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:37] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:38] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:39] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:40] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:41] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:42] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:43] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:44] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:45] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:46] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:47] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:48] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:49] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:50] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:51] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:52] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:53] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:54] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:55] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:56] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:57] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:58] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:05:59] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:00] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:01] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:02] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:03] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:04] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:05] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:06] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:07] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:08] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:09] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:10] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:11] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:12] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:13] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:14] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:15] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:16] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.
## [15:06:17] WARNING: amalgamation/../src/c_api/c_api.cc:785: `ntree_limit` is deprecated, use `iteration_range` instead.

PPV

glm_cat_test <- pred_cat_f(model_m = glmnet_m,model_name='ElasticNet',
                           testdat=testSet1,data_type = 'Test')%>% data.frame()

rf_cat_test <- pred_cat_f(model_m = rf_m,model_name='RF',testdat=testSet1,data_type = 'Test')%>% data.frame()

xgb_cat_test <- pred_cat_f(model_m = xgb_m,model_name='XGBoost',testdat=testSet1,data_type = 'Test')%>% data.frame()


glm_cat_val <- pred_cat_f(model_m = glmnet_m,model_name='ElasticNet',testdat=testSet1,data_type = 'Validation')%>% data.frame()

rf_cat_val <- pred_cat_f(model_m = rf_m,model_name='RF',testdat=testSet1,data_type = 'Validation')%>% data.frame()

xgb_cat_val <- pred_cat_f(model_m = xgb_m,model_name='XGBoost',testdat=testSet1,data_type = 'Validation')%>% data.frame()


cat_sum <- rbind(glm_cat_test,rf_cat_test,xgb_cat_test,
      glm_cat_val,rf_cat_val,xgb_cat_val
      )


DT::datatable(cat_sum,
              filter = "top", editable = "cell", extensions = "Buttons",
              options = list(
                dom = "Blfrtip",
                scrollX = TRUE,
                buttons = c("copy", "csv", "excel", "pdf", "print"),
                lengthMenu = list(
                  c(5, 25, 50, 100, -1),
                  c(5, 25, 50, 100, "All")
                )
              )
)

Evaluation

metrics

glm_perf <- sum_perf_f(glmnet_m, testdat=testSet1,model_name='ElasticNet') %>% data.frame()

rf_perf <- sum_perf_f(rf_m, testdat=testSet1,model_name='RF') %>% data.frame()

xgb_perf <- sum_perf_f(xgb_m, testdat=testSet1,model_name='XGBoost') %>% data.frame()

metrics_res <- rbind(glm_perf,rf_perf,xgb_perf)

# colnames(metrics_res) <- c('data_type','model_name','Acc','Kappa','AUCPROC','AUCPR','SBrier','Brier','Precision','Recall','F','auc_ap_sbr','s_z','s_p')

DT::datatable(metrics_res,
              filter = "top", editable = "cell", extensions = "Buttons",
              options = list(
                dom = "Blfrtip",
                scrollX = TRUE,
                buttons = c("copy", "csv", "excel", "pdf", "print"),
                lengthMenu = list(
                  c(5, 25, 50, 100, -1),
                  c(5, 25, 50, 100, "All")
                )
              )
)

viz perf

ROC

roc_glmnet <- roc_f(model_m=glmnet_m,testdat=testSet1)
roc_rf <- roc_f(model_m=rf_m,testdat=testSet1)
roc_xgb <- roc_f(model_m=xgb_m,testdat=testSet1)

g_roc_train <- ggroc(list(ElasticNet=roc_glmnet[[1]], RF=roc_rf[[1]], XGBoost = roc_xgb[[1]]), size = 1,legacy.axes=TRUE)+
  geom_segment(aes(x = 0, xend = 1, y = 0, yend = 1), color="darkgrey", linetype="dashed")+
  theme_minimal()
g_roc_test <- ggroc(list(ElasticNet=roc_glmnet[[2]], RF=roc_rf[[2]], XGBoost = roc_xgb[[2]]), size = 1,legacy.axes=TRUE)+
  geom_segment(aes(x = 0, xend = 1, y = 0, yend = 1), color="darkgrey", linetype="dashed")+
  theme_minimal()

g_roc_train

g_roc_test

Calibration plot

cali_plot_f(model_m=glmnet_m,model_name='ElasticNet',testdat=testSet1)

cali_plot_f(model_m=rf_m,model_name='RF',testdat=testSet1)

cali_plot_f(model_m=xgb_m,model_name='XGBoost',testdat=testSet1)

Feature importance

glm_vip <- vip_f(glmnet_m,model_name = 'ElasticNet')
rf_vip <- vip_f(rf_m,model_name = 'RF')
xgb_vip <- vip_f(xgb_m,model_name = 'XGBoost')
vip_sum <- rbind(glm_vip,rf_vip,xgb_vip)

DT::datatable(vip_sum,
              filter = "top", editable = "cell", extensions = "Buttons",
              options = list(
                dom = "Blfrtip",
                scrollX = TRUE,
                buttons = c("copy", "csv", "excel", "pdf", "print"),
                lengthMenu = list(
                  c(5, 25, 50, 100, -1),
                  c(5, 25, 50, 100, "All")
                )
              )
)

SHAP

# ks_glm <- kernelshap(glmnet_m, trainingSet1[,-1],
#                    bg_X = trainingSet1,
#                    type="prob")

ks_glm1 <- ks_glm$S[[1]][,-6]

ks_glm2 <- ks_glm$S[[2]][,-6]

sv_importance(shapviz(ks_glm1,trainingSet1[,-1]), "bee")

sv_importance(shapviz(ks_glm2,trainingSet1[,-1]), "bee")

ks_rf1 <- ks_rf$S[[1]]

ks_rf2 <- ks_rf$S[[2]]

sv_importance(shapviz(ks_rf1,trainingSet1[,-1]), "bee")

sv_importance(shapviz(ks_rf2,trainingSet1[,-1]), "bee")

ks_xgb1 <- ks_xgb$S[[1]]

ks_xgb2 <- ks_xgb$S[[2]]

sv_importance(shapviz(ks_xgb1,trainingSet1[,-1]), "bee")

sv_importance(shapviz(ks_xgb2,trainingSet1[,-1]), "bee")

# Recalibratioin model

Save model for future use

saveRDS(rf_m, "rf_m.rds")

saveRDS(glmnet_m, "glmnet_m.rds")


saveRDS(xgb_m, "xgb_m.rds")

backup

glmnet

## train and test
viz_perf_f(model_m=glmnet_m,
           testdat=testSet1,
           bin_num=10)

## [[1]]
## [[1]]$roc

## 
## [[1]]$proc

## 
## [[1]]$prg

## 
## [[1]]$cc

## 
## [[1]]$probs
## [[1]]$probs$Group1
##              one       zero  obs  Group  TP   TN   FP  FN        SENS
## 782  0.986733236 0.01326676  one Group1   1 1140    0 389 0.002564103
## 572  0.982912867 0.01708713  one Group1   2 1140    0 388 0.005128205
## 152  0.960815781 0.03918422  one Group1   3 1140    0 387 0.007692308
## 1193 0.947559504 0.05244050  one Group1   4 1140    0 386 0.010256410
## 284  0.944879889 0.05512011  one Group1   5 1140    0 385 0.012820513
## 983  0.935726563 0.06427344  one Group1   6 1140    0 384 0.015384615
## 335  0.934966377 0.06503362  one Group1   7 1140    0 383 0.017948718
## 891  0.932034579 0.06796542  one Group1   8 1140    0 382 0.020512821
## 673  0.930301792 0.06969821  one Group1   9 1140    0 381 0.023076923
## 325  0.929607937 0.07039206  one Group1  10 1140    0 380 0.025641026
## 812  0.921199545 0.07880046 zero Group1  10 1139    1 380 0.025641026
## 260  0.919782336 0.08021766  one Group1  11 1139    1 379 0.028205128
## 122  0.919050431 0.08094957  one Group1  12 1139    1 378 0.030769231
## 724  0.914910993 0.08508901 zero Group1  12 1138    2 378 0.030769231
## 648  0.914206506 0.08579349 zero Group1  12 1137    3 378 0.030769231
## 216  0.913678188 0.08632181  one Group1  13 1137    3 377 0.033333333
## 568  0.911450863 0.08854914  one Group1  14 1137    3 376 0.035897436
## 723  0.908517534 0.09148247 zero Group1  14 1136    4 376 0.035897436
## 89   0.907144831 0.09285517  one Group1  15 1136    4 375 0.038461538
## 1261 0.906823953 0.09317605  one Group1  16 1136    4 374 0.041025641
## 721  0.903357435 0.09664257 zero Group1  16 1135    5 374 0.041025641
## 633  0.897581179 0.10241882 zero Group1  16 1134    6 374 0.041025641
## 1459 0.896566290 0.10343371 zero Group1  16 1133    7 374 0.041025641
## 158  0.893922737 0.10607726  one Group1  17 1133    7 373 0.043589744
## 978  0.889888856 0.11011114  one Group1  18 1133    7 372 0.046153846
## 365  0.889851256 0.11014874  one Group1  19 1133    7 371 0.048717949
## 367  0.888655801 0.11134420  one Group1  20 1133    7 370 0.051282051
## 270  0.888213667 0.11178633  one Group1  21 1133    7 369 0.053846154
## 271  0.888143642 0.11185636  one Group1  22 1133    7 368 0.056410256
## 1082 0.887012459 0.11298754  one Group1  23 1133    7 367 0.058974359
## 275  0.886934937 0.11306506  one Group1  24 1133    7 366 0.061538462
## 1267 0.884648978 0.11535102  one Group1  25 1133    7 365 0.064102564
## 347  0.883340693 0.11665931  one Group1  26 1133    7 364 0.066666667
## 85   0.882626450 0.11737355  one Group1  27 1133    7 363 0.069230769
## 241  0.882493220 0.11750678  one Group1  28 1133    7 362 0.071794872
## 345  0.882117498 0.11788250  one Group1  29 1133    7 361 0.074358974
## 336  0.880646139 0.11935386  one Group1  30 1133    7 360 0.076923077
## 455  0.879421302 0.12057870 zero Group1  30 1132    8 360 0.076923077
## 332  0.876580656 0.12341934  one Group1  31 1132    8 359 0.079487179
## 237  0.876379650 0.12362035  one Group1  32 1132    8 358 0.082051282
## 372  0.875146399 0.12485360  one Group1  33 1132    8 357 0.084615385
## 210  0.873051959 0.12694804  one Group1  34 1132    8 356 0.087179487
## 578  0.872899751 0.12710025 zero Group1  34 1131    9 356 0.087179487
## 259  0.872179643 0.12782036  one Group1  35 1131    9 355 0.089743590
## 1266 0.871049994 0.12895001  one Group1  36 1131    9 354 0.092307692
## 526  0.870260255 0.12973974 zero Group1  36 1130   10 354 0.092307692
## 90   0.868542486 0.13145751  one Group1  37 1130   10 353 0.094871795
## 830  0.866458320 0.13354168 zero Group1  37 1129   11 353 0.094871795
## 831  0.866068356 0.13393164 zero Group1  37 1128   12 353 0.094871795
## 227  0.865813099 0.13418690  one Group1  38 1128   12 352 0.097435897
## 14   0.861812655 0.13818734  one Group1  39 1128   12 351 0.100000000
## 1192 0.860399327 0.13960067  one Group1  40 1128   12 350 0.102564103
## 1498 0.858440590 0.14155941  one Group1  41 1128   12 349 0.105128205
## 290  0.854510585 0.14548941  one Group1  42 1128   12 348 0.107692308
## 1497 0.854186075 0.14581393  one Group1  43 1128   12 347 0.110256410
## 780  0.853679572 0.14632043  one Group1  44 1128   12 346 0.112820513
## 88   0.851744819 0.14825518  one Group1  45 1128   12 345 0.115384615
## 1236 0.851656424 0.14834358 zero Group1  45 1127   13 345 0.115384615
## 170  0.850846468 0.14915353 zero Group1  45 1126   14 345 0.115384615
## 1237 0.850228488 0.14977151 zero Group1  45 1125   15 345 0.115384615
## 430  0.849987149 0.15001285  one Group1  46 1125   15 344 0.117948718
## 131  0.849625684 0.15037432  one Group1  47 1125   15 343 0.120512821
## 431  0.849569726 0.15043027  one Group1  48 1125   15 342 0.123076923
## 43   0.849534616 0.15046538 zero Group1  48 1124   16 342 0.123076923
## 428  0.847686101 0.15231390  one Group1  49 1124   16 341 0.125641026
## 1503 0.846391873 0.15360813  one Group1  50 1124   16 340 0.128205128
## 427  0.845234374 0.15476563  one Group1  51 1124   16 339 0.130769231
## 287  0.844836320 0.15516368  one Group1  52 1124   16 338 0.133333333
## 1502 0.844232989 0.15576701  one Group1  53 1124   16 337 0.135897436
## 1196 0.840973561 0.15902644  one Group1  54 1124   16 336 0.138461538
## 924  0.840704979 0.15929502 zero Group1  54 1123   17 336 0.138461538
## 223  0.839834471 0.16016553  one Group1  55 1123   17 335 0.141025641
## 214  0.839001522 0.16099848  one Group1  56 1123   17 334 0.143589744
## 344  0.838743598 0.16125640  one Group1  57 1123   17 333 0.146153846
## 16   0.838494455 0.16150554 zero Group1  57 1122   18 333 0.146153846
## 563  0.838087482 0.16191252  one Group1  58 1122   18 332 0.148717949
## 321  0.836068142 0.16393186  one Group1  59 1122   18 331 0.151282051
## 84   0.835642482 0.16435752  one Group1  60 1122   18 330 0.153846154
## 1438 0.835213036 0.16478696 zero Group1  60 1121   19 330 0.153846154
## 86   0.834735270 0.16526473  one Group1  61 1121   19 329 0.156410256
## 283  0.833187250 0.16681275  one Group1  62 1121   19 328 0.158974359
## 191  0.833148079 0.16685192  one Group1  63 1121   19 327 0.161538462
## 334  0.831796819 0.16820318  one Group1  64 1121   19 326 0.164102564
## 429  0.830885779 0.16911422  one Group1  65 1121   19 325 0.166666667
## 1292 0.830106809 0.16989319 zero Group1  65 1120   20 325 0.166666667
## 923  0.829368091 0.17063191 zero Group1  65 1119   21 325 0.166666667
## 277  0.829005200 0.17099480  one Group1  66 1119   21 324 0.169230769
## 1259 0.828768714 0.17123129  one Group1  67 1119   21 323 0.171794872
## 982  0.827682522 0.17231748  one Group1  68 1119   21 322 0.174358974
## 211  0.827182264 0.17281774  one Group1  69 1119   21 321 0.176923077
## 60   0.825553541 0.17444646  one Group1  70 1119   21 320 0.179487179
## 742  0.825129129 0.17487087 zero Group1  70 1118   22 320 0.179487179
## 83   0.823525229 0.17647477  one Group1  71 1118   22 319 0.182051282
## 231  0.823191877 0.17680812  one Group1  72 1118   22 318 0.184615385
## 396  0.822960451 0.17703955  one Group1  73 1118   22 317 0.187179487
## 147  0.821143934 0.17885607  one Group1  74 1118   22 316 0.189743590
## 1501 0.820952443 0.17904756  one Group1  75 1118   22 315 0.192307692
## 352  0.820456543 0.17954346 zero Group1  75 1117   23 315 0.192307692
## 215  0.818820446 0.18117955  one Group1  76 1117   23 314 0.194871795
## 198  0.817970780 0.18202922 zero Group1  76 1116   24 314 0.194871795
## 491  0.817754252 0.18224575 zero Group1  76 1115   25 314 0.194871795
## 155  0.817731942 0.18226806  one Group1  77 1115   25 313 0.197435897
## 80   0.817590931 0.18240907  one Group1  78 1115   25 312 0.200000000
## 288  0.816596634 0.18340337  one Group1  79 1115   25 311 0.202564103
## 294  0.815738276 0.18426172 zero Group1  79 1114   26 311 0.202564103
## 320  0.815449163 0.18455084  one Group1  80 1114   26 310 0.205128205
## 870  0.815135664 0.18486434 zero Group1  80 1113   27 310 0.205128205
## 1065 0.815108216 0.18489178 zero Group1  80 1112   28 310 0.205128205
## 889  0.814085563 0.18591444  one Group1  81 1112   28 309 0.207692308
## 1198 0.813870408 0.18612959  one Group1  82 1112   28 308 0.210256410
## 38   0.812575614 0.18742439  one Group1  83 1112   28 307 0.212820513
## 390  0.812571255 0.18742874  one Group1  84 1112   28 306 0.215384615
## 37   0.812131020 0.18786898 zero Group1  84 1111   29 306 0.215384615
## 29   0.812018267 0.18798173  one Group1  85 1111   29 305 0.217948718
## 394  0.811969554 0.18803045  one Group1  86 1111   29 304 0.220512821
## 1508 0.811380296 0.18861970 zero Group1  86 1110   30 304 0.220512821
## 525  0.810110312 0.18988969 zero Group1  86 1109   31 304 0.220512821
## 567  0.807826947 0.19217305  one Group1  87 1109   31 303 0.223076923
## 258  0.807769076 0.19223092  one Group1  88 1109   31 302 0.225641026
## 366  0.806380674 0.19361933  one Group1  89 1109   31 301 0.228205128
## 266  0.806317911 0.19368209  one Group1  90 1109   31 300 0.230769231
## 678  0.806276749 0.19372325  one Group1  91 1109   31 299 0.233333333
## 186  0.805799955 0.19420004  one Group1  92 1109   31 298 0.235897436
## 250  0.805764335 0.19423566 zero Group1  92 1108   32 298 0.235897436
## 256  0.805411465 0.19458854 zero Group1  92 1107   33 298 0.235897436
## 1157 0.804530665 0.19546934 zero Group1  92 1106   34 298 0.235897436
## 786  0.804067724 0.19593228  one Group1  93 1106   34 297 0.238461538
## 1373 0.803733664 0.19626634 zero Group1  93 1105   35 297 0.238461538
## 337  0.803442617 0.19655738  one Group1  94 1105   35 296 0.241025641
## 616  0.803384132 0.19661587 zero Group1  94 1104   36 296 0.241025641
## 761  0.803316381 0.19668362 zero Group1  94 1103   37 296 0.241025641
## 340  0.803000362 0.19699964  one Group1  95 1103   37 295 0.243589744
## 370  0.802621686 0.19737831  one Group1  96 1103   37 294 0.246153846
## 157  0.802038140 0.19796186  one Group1  97 1103   37 293 0.248717949
## 123  0.800765688 0.19923431  one Group1  98 1103   37 292 0.251282051
## 991  0.800229499 0.19977050 zero Group1  98 1102   38 292 0.251282051
## 187  0.799205585 0.20079441  one Group1  99 1102   38 291 0.253846154
## 481  0.799049098 0.20095090  one Group1 100 1102   38 290 0.256410256
## 600  0.798886456 0.20111354 zero Group1 100 1101   39 290 0.256410256
## 217  0.797888937 0.20211106  one Group1 101 1101   39 289 0.258974359
## 124  0.797813600 0.20218640  one Group1 102 1101   39 288 0.261538462
## 610  0.795093741 0.20490626 zero Group1 102 1100   40 288 0.261538462
## 1397 0.794986209 0.20501379  one Group1 103 1100   40 287 0.264102564
## 890  0.793231492 0.20676851  one Group1 105 1100   40 285 0.269230769
## 894  0.793231492 0.20676851  one Group1 105 1100   40 285 0.269230769
## 904  0.792607650 0.20739235 zero Group1 105 1099   41 285 0.269230769
## 1500 0.792555951 0.20744405  one Group1 106 1099   41 284 0.271794872
## 299  0.791904532 0.20809547 zero Group1 106 1098   42 284 0.271794872
## 224  0.791161455 0.20883854  one Group1 107 1098   42 283 0.274358974
## 573  0.790239456 0.20976054  one Group1 108 1098   42 282 0.276923077
## 1227 0.788414700 0.21158530 zero Group1 108 1097   43 282 0.276923077
## 326  0.787900154 0.21209985  one Group1 109 1097   43 281 0.279487179
## 570  0.786205070 0.21379493  one Group1 110 1097   43 280 0.282051282
## 1294 0.783680640 0.21631936 zero Group1 110 1096   44 280 0.282051282
## 778  0.783652004 0.21634800  one Group1 111 1096   44 279 0.284615385
## 87   0.782557030 0.21744297  one Group1 112 1096   44 278 0.287179487
## 272  0.782298738 0.21770126  one Group1 113 1096   44 277 0.289743590
## 135  0.781157351 0.21884265  one Group1 114 1096   44 276 0.292307692
## 893  0.779808573 0.22019143  one Group1 115 1096   44 275 0.294871795
## 172  0.779690843 0.22030916  one Group1 116 1096   44 274 0.297435897
## 1300 0.779545099 0.22045490 zero Group1 116 1095   45 274 0.297435897
## 125  0.779256556 0.22074344  one Group1 117 1095   45 273 0.300000000
## 56   0.778317958 0.22168204  one Group1 118 1095   45 272 0.302564103
## 153  0.777838084 0.22216192  one Group1 119 1095   45 271 0.305128205
## 264  0.777417601 0.22258240  one Group1 120 1095   45 270 0.307692308
## 1458 0.775952567 0.22404743 zero Group1 120 1094   46 270 0.307692308
## 783  0.774993305 0.22500669  one Group1 121 1094   46 269 0.310256410
## 329  0.774862421 0.22513758  one Group1 122 1094   46 268 0.312820513
## 1241 0.772732101 0.22726790 zero Group1 122 1093   47 268 0.312820513
## 148  0.771282265 0.22871774  one Group1 123 1093   47 267 0.315384615
## 432  0.769576994 0.23042301  one Group1 124 1093   47 266 0.317948718
## 66   0.768425215 0.23157479  one Group1 125 1093   47 265 0.320512821
## 1262 0.768270688 0.23172931  one Group1 126 1093   47 264 0.323076923
## 184  0.767782193 0.23221781  one Group1 127 1093   47 263 0.325641026
## 96   0.766601013 0.23339899 zero Group1 127 1092   48 263 0.325641026
## 1352 0.765622794 0.23437721 zero Group1 127 1091   49 263 0.325641026
## 685  0.765587627 0.23441237 zero Group1 127 1090   50 263 0.325641026
## 1265 0.764793146 0.23520685  one Group1 128 1090   50 262 0.328205128
## 12   0.764458941 0.23554106  one Group1 129 1090   50 261 0.330769231
## 704  0.763739058 0.23626094 zero Group1 129 1089   51 261 0.330769231
## 1270 0.762790511 0.23720949  one Group1 130 1089   51 260 0.333333333
## 814  0.762407960 0.23759204 zero Group1 130 1088   52 260 0.333333333
## 985  0.761749903 0.23825010  one Group1 131 1088   52 259 0.335897436
## 32   0.760603707 0.23939629  one Group1 132 1088   52 258 0.338461538
## 681  0.760233444 0.23976656  one Group1 133 1088   52 257 0.341025641
## 1137 0.759969077 0.24003092 zero Group1 133 1087   53 257 0.341025641
## 680  0.759334642 0.24066536  one Group1 134 1087   53 256 0.343589744
## 376  0.758107495 0.24189250  one Group1 135 1087   53 255 0.346153846
## 247  0.758016922 0.24198308 zero Group1 135 1086   54 255 0.346153846
## 343  0.756723132 0.24327687  one Group1 136 1086   54 254 0.348717949
## 262  0.755236437 0.24476356  one Group1 137 1086   54 253 0.351282051
## 749  0.754778680 0.24522132 zero Group1 137 1085   55 253 0.351282051
## 477  0.754169250 0.24583075  one Group1 138 1085   55 252 0.353846154
## 544  0.753996501 0.24600350  one Group1 139 1085   55 251 0.356410256
## 887  0.753989838 0.24601016  one Group1 140 1085   55 250 0.358974359
## 228  0.752647347 0.24735265  one Group1 141 1085   55 249 0.361538462
## 46   0.752050442 0.24794956 zero Group1 141 1084   56 249 0.361538462
## 532  0.751418326 0.24858167 zero Group1 141 1083   57 249 0.361538462
## 902  0.750809311 0.24919069 zero Group1 141 1082   58 249 0.361538462
## 1406 0.750535906 0.24946409 zero Group1 141 1081   59 249 0.361538462
## 1084 0.749903666 0.25009633  one Group1 142 1081   59 248 0.364102564
## 1422 0.748778839 0.25122116 zero Group1 142 1080   60 248 0.364102564
## 136  0.748029293 0.25197071  one Group1 143 1080   60 247 0.366666667
## 928  0.748000090 0.25199991 zero Group1 143 1079   61 247 0.366666667
## 373  0.747978022 0.25202198  one Group1 144 1079   61 246 0.369230769
## 1171 0.747827955 0.25217205 zero Group1 144 1078   62 246 0.369230769
## 1172 0.747561461 0.25243854 zero Group1 144 1077   63 246 0.369230769
## 507  0.746505897 0.25349410 zero Group1 144 1076   64 246 0.369230769
## 331  0.745366616 0.25463338  one Group1 145 1076   64 245 0.371794872
## 18   0.744605580 0.25539442  one Group1 146 1076   64 244 0.374358974
## 51   0.744218396 0.25578160  one Group1 147 1076   64 243 0.376923077
## 1396 0.743958351 0.25604165  one Group1 148 1076   64 242 0.379487179
## 177  0.743253610 0.25674639  one Group1 149 1076   64 241 0.382051282
## 138  0.743227063 0.25677294  one Group1 150 1076   64 240 0.384615385
## 1393 0.743035210 0.25696479  one Group1 151 1076   64 239 0.387179487
## 140  0.742727866 0.25727213  one Group1 152 1076   64 238 0.389743590
## 286  0.741380260 0.25861974  one Group1 153 1076   64 237 0.392307692
## 789  0.740608417 0.25939158 zero Group1 153 1075   65 237 0.392307692
## 1506 0.740260258 0.25973974  one Group1 154 1075   65 236 0.394871795
## 130  0.738759537 0.26124046  one Group1 155 1075   65 235 0.397435897
## 980  0.737567807 0.26243219  one Group1 156 1075   65 234 0.400000000
## 1189 0.736771071 0.26322893  one Group1 157 1075   65 233 0.402564103
## 399  0.735792835 0.26420716 zero Group1 157 1074   66 233 0.402564103
## 25   0.734616708 0.26538329  one Group1 158 1074   66 232 0.405128205
## 1477 0.733120226 0.26687977 zero Group1 158 1073   67 232 0.405128205
## 1460 0.733087306 0.26691269 zero Group1 158 1072   68 232 0.405128205
## 689  0.732435529 0.26756447 zero Group1 158 1071   69 232 0.405128205
## 656  0.731770539 0.26822946 zero Group1 158 1070   70 232 0.405128205
## 267  0.731733886 0.26826611  one Group1 159 1070   70 231 0.407692308
## 323  0.730584591 0.26941541  one Group1 160 1070   70 230 0.410256410
## 181  0.728270707 0.27172929 zero Group1 160 1069   71 230 0.410256410
## 126  0.726939012 0.27306099  one Group1 161 1069   71 229 0.412820513
## 1029 0.726420447 0.27357955 zero Group1 161 1068   72 229 0.412820513
## 527  0.725093257 0.27490674 zero Group1 161 1067   73 229 0.412820513
## 324  0.723549624 0.27645038  one Group1 162 1067   73 228 0.415384615
## 1329 0.722265622 0.27773438 zero Group1 162 1066   74 228 0.415384615
## 1494 0.721552372 0.27844763  one Group1 163 1066   74 227 0.417948718
## 380  0.720026695 0.27997330  one Group1 164 1066   74 226 0.420512821
## 1221 0.719285412 0.28071459 zero Group1 164 1065   75 226 0.420512821
## 483  0.717574148 0.28242585  one Group1 165 1065   75 225 0.423076923
## 509  0.716505908 0.28349409 zero Group1 165 1064   76 225 0.423076923
## 1335 0.716212069 0.28378793 zero Group1 165 1063   77 225 0.423076923
## 1088 0.715903379 0.28409662  one Group1 166 1063   77 224 0.425641026
## 1094 0.714795416 0.28520458  one Group1 167 1063   77 223 0.428205128
## 1351 0.713948835 0.28605116 zero Group1 167 1062   78 223 0.428205128
## 1155 0.711904518 0.28809548 zero Group1 167 1061   79 223 0.428205128
## 423  0.711136326 0.28886367  one Group1 168 1061   79 222 0.430769231
## 240  0.710012982 0.28998702  one Group1 169 1061   79 221 0.433333333
## 817  0.709797731 0.29020227 zero Group1 169 1060   80 221 0.433333333
## 1319 0.709061560 0.29093844 zero Group1 169 1059   81 221 0.433333333
## 872  0.707979474 0.29202053 zero Group1 169 1058   82 221 0.433333333
## 346  0.705310202 0.29468980  one Group1 170 1058   82 220 0.435897436
## 801  0.704889041 0.29511096 zero Group1 170 1057   83 220 0.435897436
## 1495 0.701419935 0.29858006  one Group1 171 1057   83 219 0.438461538
## 581  0.701411086 0.29858891 zero Group1 171 1056   84 219 0.438461538
## 479  0.700988187 0.29901181  one Group1 172 1056   84 218 0.441025641
## 807  0.699553871 0.30044613 zero Group1 172 1055   85 218 0.441025641
## 62   0.699062003 0.30093800  one Group1 173 1055   85 217 0.443589744
## 1242 0.699059451 0.30094055 zero Group1 173 1054   86 217 0.443589744
## 382  0.699003205 0.30099679  one Group1 174 1054   86 216 0.446153846
## 8    0.698742842 0.30125716  one Group1 175 1054   86 215 0.448717949
## 369  0.697143894 0.30285611  one Group1 176 1054   86 214 0.451282051
## 77   0.696805731 0.30319427  one Group1 177 1054   86 213 0.453846154
## 569  0.696389233 0.30361077  one Group1 178 1054   86 212 0.456410256
## 421  0.695415547 0.30458445 zero Group1 178 1053   87 212 0.456410256
## 285  0.694568728 0.30543127  one Group1 179 1053   87 211 0.458974359
## 222  0.694400264 0.30559974  one Group1 180 1053   87 210 0.461538462
## 64   0.694170312 0.30582969 zero Group1 180 1052   88 210 0.461538462
## 208  0.694086043 0.30591396 zero Group1 180 1051   89 210 0.461538462
## 151  0.694002108 0.30599789  one Group1 181 1051   89 209 0.464102564
## 65   0.692370881 0.30762912  one Group1 182 1051   89 208 0.466666667
## 1264 0.692148950 0.30785105  one Group1 183 1051   89 207 0.469230769
## 473  0.692139505 0.30786050  one Group1 184 1051   89 206 0.471794872
## 1223 0.692035880 0.30796412 zero Group1 184 1050   90 206 0.471794872
## 550  0.691941491 0.30805851 zero Group1 184 1049   91 206 0.471794872
## 1440 0.691360885 0.30863912 zero Group1 184 1048   92 206 0.471794872
## 993  0.688440329 0.31155967 zero Group1 184 1047   93 206 0.471794872
## 1027 0.687624853 0.31237515 zero Group1 184 1046   94 206 0.471794872
## 1483 0.686556390 0.31344361 zero Group1 184 1045   95 206 0.471794872
## 1009 0.686283543 0.31371646 zero Group1 184 1044   96 206 0.471794872
## 1509 0.686113736 0.31388626 zero Group1 184 1043   97 206 0.471794872
## 379  0.685825280 0.31417472  one Group1 185 1043   97 205 0.474358974
## 1099 0.685494927 0.31450507 zero Group1 185 1042   98 205 0.474358974
## 1313 0.685237045 0.31476295 zero Group1 185 1041   99 205 0.474358974
## 676  0.685142358 0.31485764  one Group1 186 1041   99 204 0.476923077
## 693  0.685004948 0.31499505 zero Group1 186 1040  100 204 0.476923077
## 1215 0.684800504 0.31519950 zero Group1 186 1039  101 204 0.476923077
## 52   0.684772558 0.31522744  one Group1 187 1039  101 203 0.479487179
## 5    0.684540467 0.31545953 zero Group1 187 1038  102 203 0.479487179
## 834  0.684139237 0.31586076 zero Group1 187 1037  103 203 0.479487179
## 69   0.683873158 0.31612684  one Group1 188 1037  103 202 0.482051282
## 957  0.682047184 0.31795282 zero Group1 188 1036  104 202 0.482051282
## 17   0.680586297 0.31941370  one Group1 189 1036  104 201 0.484615385
## 1246 0.679368162 0.32063184 zero Group1 189 1035  105 201 0.484615385
## 1504 0.678134838 0.32186516  one Group1 190 1035  105 200 0.487179487
## 1260 0.677667384 0.32233262  one Group1 191 1035  105 199 0.489743590
## 1017 0.676262345 0.32373765 zero Group1 191 1034  106 199 0.489743590
## 885  0.676193781 0.32380622  one Group1 192 1034  106 198 0.492307692
## 1175 0.675569103 0.32443090 zero Group1 192 1033  107 198 0.492307692
## 189  0.675405248 0.32459475  one Group1 193 1033  107 197 0.494871795
## 368  0.675282542 0.32471746  one Group1 194 1033  107 196 0.497435897
## 1051 0.675230316 0.32476968 zero Group1 194 1032  108 196 0.497435897
## 383  0.674020746 0.32597925  one Group1 195 1032  108 195 0.500000000
## 1485 0.673869493 0.32613051 zero Group1 195 1031  109 195 0.500000000
## 1337 0.672567439 0.32743256 zero Group1 195 1030  110 195 0.500000000
## 926  0.672408580 0.32759142 zero Group1 195 1029  111 195 0.500000000
## 1239 0.672063063 0.32793694 zero Group1 195 1028  112 195 0.500000000
## 931  0.671835649 0.32816435 zero Group1 195 1027  113 195 0.500000000
## 1130 0.671109618 0.32889038 zero Group1 195 1026  114 195 0.500000000
## 322  0.669943776 0.33005622  one Group1 196 1026  114 194 0.502564103
## 997  0.669573558 0.33042644 zero Group1 196 1025  115 194 0.502564103
## 694  0.668997778 0.33100222 zero Group1 196 1024  116 194 0.502564103
## 185  0.667808019 0.33219198  one Group1 197 1024  116 193 0.505128205
## 710  0.667728684 0.33227132 zero Group1 197 1023  117 193 0.505128205
## 424  0.666850559 0.33314944  one Group1 198 1023  117 192 0.507692308
## 1214 0.666295820 0.33370418 zero Group1 198 1022  118 192 0.507692308
## 281  0.664682106 0.33531789  one Group1 199 1022  118 191 0.510256410
## 1093 0.664562996 0.33543700  one Group1 200 1022  118 190 0.512820513
## 263  0.663527840 0.33647216  one Group1 201 1022  118 189 0.515384615
## 425  0.663477998 0.33652200  one Group1 202 1022  118 188 0.517948718
## 475  0.661205195 0.33879481  one Group1 203 1022  118 187 0.520512821
## 1394 0.661094616 0.33890538  one Group1 204 1022  118 186 0.523076923
## 395  0.659775179 0.34022482  one Group1 205 1022  118 185 0.525641026
## 230  0.659124099 0.34087590  one Group1 206 1022  118 184 0.528205128
## 1106 0.657968707 0.34203129 zero Group1 206 1021  119 184 0.528205128
## 804  0.657254540 0.34274546 zero Group1 206 1020  120 184 0.528205128
## 1505 0.653158283 0.34684172  one Group1 207 1020  120 183 0.530769231
## 213  0.653080296 0.34691970  one Group1 208 1020  120 182 0.533333333
## 1238 0.652716867 0.34728313 zero Group1 208 1019  121 182 0.533333333
## 1046 0.649769251 0.35023075 zero Group1 208 1018  122 182 0.533333333
## 1374 0.649702393 0.35029761 zero Group1 208 1017  123 182 0.533333333
## 202  0.648856173 0.35114383 zero Group1 208 1016  124 182 0.533333333
## 709  0.648469218 0.35153078 zero Group1 208 1015  125 182 0.533333333
## 437  0.647281213 0.35271879  one Group1 209 1015  125 181 0.535897436
## 657  0.647108688 0.35289131 zero Group1 209 1014  126 181 0.535897436
## 1248 0.646253173 0.35374683 zero Group1 209 1013  127 181 0.535897436
## 233  0.646217755 0.35378224  one Group1 210 1013  127 180 0.538461538
## 615  0.645715378 0.35428462 zero Group1 210 1012  128 180 0.538461538
## 276  0.645384402 0.35461560  one Group1 211 1012  128 179 0.541025641
## 614  0.644780300 0.35521970 zero Group1 211 1011  129 179 0.541025641
## 1103 0.644104726 0.35589527 zero Group1 211 1010  130 179 0.541025641
## 921  0.643720196 0.35627980 zero Group1 211 1009  131 179 0.541025641
## 1245 0.643449940 0.35655006 zero Group1 211 1008  132 179 0.541025641
## 596  0.641898272 0.35810173 zero Group1 211 1007  133 179 0.541025641
## 744  0.641381089 0.35861891 zero Group1 211 1006  134 179 0.541025641
## 78   0.640221228 0.35977877  one Group1 212 1006  134 178 0.543589744
## 690  0.638105484 0.36189452 zero Group1 212 1005  135 178 0.543589744
## 975  0.637422646 0.36257735  one Group1 213 1005  135 177 0.546153846
## 296  0.637315929 0.36268407 zero Group1 213 1004  136 177 0.546153846
## 146  0.636707152 0.36329285  one Group1 214 1004  136 176 0.548717949
## 196  0.636226540 0.36377346 zero Group1 214 1003  137 176 0.548717949
## 625  0.635521163 0.36447884 zero Group1 214 1002  138 176 0.548717949
## 863  0.635399014 0.36460099 zero Group1 214 1001  139 176 0.548717949
## 906  0.632714502 0.36728550 zero Group1 214 1000  140 176 0.548717949
## 1140 0.631718861 0.36828114 zero Group1 214  999  141 176 0.548717949
## 711  0.631077258 0.36892274 zero Group1 214  998  142 176 0.548717949
## 1114 0.630791553 0.36920845 zero Group1 214  997  143 176 0.548717949
## 22   0.630634545 0.36936545 zero Group1 214  996  144 176 0.548717949
## 692  0.630560376 0.36943962 zero Group1 214  995  145 176 0.548717949
## 1117 0.629980322 0.37001968 zero Group1 214  994  146 176 0.548717949
## 502  0.629550154 0.37044985 zero Group1 214  993  147 176 0.548717949
## 1039 0.629234985 0.37076502 zero Group1 214  992  148 176 0.548717949
## 392  0.629176424 0.37082358  one Group1 215  992  148 175 0.551282051
## 622  0.627957340 0.37204266 zero Group1 215  991  149 175 0.551282051
## 488  0.627765522 0.37223448 zero Group1 215  990  150 175 0.551282051
## 1306 0.627019823 0.37298018 zero Group1 215  989  151 175 0.551282051
## 612  0.626655613 0.37334439 zero Group1 215  988  152 175 0.551282051
## 1141 0.626571375 0.37342863 zero Group1 215  987  153 175 0.551282051
## 1437 0.625443664 0.37455634 zero Group1 215  986  154 175 0.551282051
## 1041 0.625401131 0.37459887 zero Group1 215  985  155 175 0.551282051
## 595  0.625074921 0.37492508 zero Group1 215  984  156 175 0.551282051
## 981  0.624695046 0.37530495  one Group1 216  984  156 174 0.553846154
## 1315 0.623703892 0.37629611 zero Group1 216  983  157 174 0.553846154
## 1336 0.622694844 0.37730516 zero Group1 216  982  158 174 0.553846154
## 1107 0.622632194 0.37736781 zero Group1 216  981  159 174 0.553846154
## 472  0.622511936 0.37748806  one Group1 217  981  159 173 0.556410256
## 1469 0.622455243 0.37754476 zero Group1 217  980  160 173 0.556410256
## 1298 0.622097199 0.37790280 zero Group1 217  979  161 173 0.556410256
## 626  0.620593930 0.37940607 zero Group1 217  978  162 173 0.556410256
## 93   0.619877989 0.38012201 zero Group1 217  977  163 173 0.556410256
## 145  0.619683701 0.38031630  one Group1 218  977  163 172 0.558974359
## 1464 0.618749492 0.38125051 zero Group1 218  976  164 172 0.558974359
## 495  0.618553559 0.38144644 zero Group1 218  975  165 172 0.558974359
## 109  0.618387325 0.38161267 zero Group1 218  974  166 172 0.558974359
## 1295 0.617805723 0.38219428 zero Group1 218  973  167 172 0.558974359
## 243  0.617611942 0.38238806 zero Group1 218  972  168 172 0.558974359
## 1445 0.614069148 0.38593085 zero Group1 218  971  169 172 0.558974359
## 1181 0.613814014 0.38618599 zero Group1 218  970  170 172 0.558974359
## 1334 0.612919685 0.38708032 zero Group1 218  969  171 172 0.558974359
## 497  0.612822766 0.38717723 zero Group1 218  968  172 172 0.558974359
## 897  0.612668348 0.38733165 zero Group1 218  967  173 172 0.558974359
## 1008 0.612166590 0.38783341 zero Group1 218  966  174 172 0.558974359
## 75   0.611745976 0.38825402  one Group1 219  966  174 171 0.561538462
## 1318 0.611074486 0.38892551 zero Group1 219  965  175 171 0.561538462
## 1407 0.610867317 0.38913268 zero Group1 219  964  176 171 0.561538462
## 575  0.610139868 0.38986013  one Group1 220  964  176 170 0.564102564
## 1297 0.609489134 0.39051087 zero Group1 220  963  177 170 0.564102564
## 1481 0.608760431 0.39123957 zero Group1 220  962  178 170 0.564102564
## 28   0.608718938 0.39128106  one Group1 221  962  178 169 0.566666667
## 98   0.608611544 0.39138846 zero Group1 221  961  179 169 0.566666667
## 728  0.608588573 0.39141143 zero Group1 221  960  180 169 0.566666667
## 722  0.608313298 0.39168670 zero Group1 221  959  181 169 0.566666667
## 1013 0.607714155 0.39228585 zero Group1 221  958  182 169 0.566666667
## 961  0.607546380 0.39245362 zero Group1 221  957  183 169 0.566666667
## 1450 0.606845665 0.39315434 zero Group1 221  956  184 169 0.566666667
## 159  0.606471132 0.39352887  one Group1 222  956  184 168 0.569230769
## 855  0.604236659 0.39576334 zero Group1 222  955  185 168 0.569230769
## 212  0.603997381 0.39600262  one Group1 223  955  185 167 0.571794872
## 637  0.603668592 0.39633141 zero Group1 223  954  186 167 0.571794872
## 1388 0.603407837 0.39659216  one Group1 224  954  186 166 0.574358974
## 15   0.602422339 0.39757766 zero Group1 224  953  187 166 0.574358974
## 1496 0.601421602 0.39857840  one Group1 225  953  187 165 0.576923077
## 732  0.599571799 0.40042820 zero Group1 225  952  188 165 0.576923077
## 397  0.599393420 0.40060658 zero Group1 225  951  189 165 0.576923077
## 317  0.598750369 0.40124963  one Group1 226  951  189 164 0.579487179
## 1382 0.598593443 0.40140656 zero Group1 226  950  190 164 0.579487179
## 1392 0.598061960 0.40193804  one Group1 227  950  190 163 0.582051282
## 1529 0.597683936 0.40231606 zero Group1 227  949  191 163 0.582051282
## 538  0.597528934 0.40247107 zero Group1 227  948  192 163 0.582051282
## 706  0.595771119 0.40422888 zero Group1 227  947  193 163 0.582051282
## 1030 0.595646714 0.40435329 zero Group1 227  946  194 163 0.582051282
## 964  0.594826683 0.40517332 zero Group1 227  945  195 163 0.582051282
## 1521 0.594519262 0.40548074 zero Group1 227  944  196 163 0.582051282
## 1091 0.594162254 0.40583775  one Group1 228  944  196 162 0.584615385
## 687  0.593545154 0.40645485 zero Group1 228  943  197 162 0.584615385
## 832  0.592287410 0.40771259 zero Group1 228  942  198 162 0.584615385
## 76   0.591401748 0.40859825  one Group1 229  942  198 161 0.587179487
## 649  0.591287741 0.40871226 zero Group1 229  941  199 161 0.587179487
## 1426 0.590155447 0.40984455 zero Group1 229  940  200 161 0.587179487
## 144  0.588966263 0.41103374  one Group1 230  940  200 160 0.589743590
## 1399 0.588454531 0.41154547  one Group1 231  940  200 159 0.592307692
## 377  0.588316413 0.41168359  one Group1 232  940  200 158 0.594871795
## 1510 0.585124867 0.41487513 zero Group1 232  939  201 158 0.594871795
## 1212 0.584993209 0.41500679 zero Group1 232  938  202 158 0.594871795
## 1514 0.584351562 0.41564844 zero Group1 232  937  203 158 0.594871795
## 1174 0.583894787 0.41610521 zero Group1 232  936  204 158 0.594871795
## 949  0.583842519 0.41615748 zero Group1 232  935  205 158 0.594871795
## 1462 0.583618793 0.41638121 zero Group1 232  934  206 158 0.594871795
## 1492 0.583316436 0.41668356 zero Group1 232  933  207 158 0.594871795
## 1066 0.582892259 0.41710774 zero Group1 232  932  208 158 0.594871795
## 546  0.582593138 0.41740686  one Group1 233  932  208 157 0.597435897
## 835  0.582577720 0.41742228 zero Group1 233  931  209 157 0.597435897
## 1033 0.582330853 0.41766915 zero Group1 233  930  210 157 0.597435897
## 300  0.581975855 0.41802415 zero Group1 233  929  211 157 0.597435897
## 979  0.580878941 0.41912106  one Group1 234  929  211 156 0.600000000
## 797  0.580357296 0.41964270 zero Group1 234  928  212 156 0.600000000
## 963  0.579824873 0.42017513 zero Group1 234  927  213 156 0.600000000
## 318  0.579483256 0.42051674  one Group1 236  927  213 154 0.605128205
## 319  0.579483256 0.42051674  one Group1 236  927  213 154 0.605128205
## 1424 0.578760324 0.42123968 zero Group1 236  926  214 154 0.605128205
## 1240 0.578266374 0.42173363 zero Group1 236  925  215 154 0.605128205
## 956  0.577657041 0.42234296 zero Group1 236  924  216 154 0.605128205
## 1476 0.577362779 0.42263722 zero Group1 236  923  217 154 0.605128205
## 30   0.576903298 0.42309670  one Group1 237  923  217 153 0.607692308
## 1011 0.575482029 0.42451797 zero Group1 237  922  218 153 0.607692308
## 342  0.575253441 0.42474656  one Group1 238  922  218 152 0.610256410
## 141  0.574257512 0.42574249  one Group1 239  922  218 151 0.612820513
## 939  0.572784022 0.42721598 zero Group1 239  921  219 151 0.612820513
## 1269 0.572353894 0.42764611  one Group1 240  921  219 150 0.615384615
## 10   0.572006145 0.42799385  one Group1 241  921  219 149 0.617948718
## 1089 0.571301075 0.42869893  one Group1 242  921  219 148 0.620512821
## 436  0.571173374 0.42882663  one Group1 243  921  219 147 0.623076923
## 907  0.570305283 0.42969472 zero Group1 243  920  220 147 0.623076923
## 839  0.569945793 0.43005421 zero Group1 243  919  221 147 0.623076923
## 1228 0.569244509 0.43075549 zero Group1 243  918  222 147 0.623076923
## 1513 0.568083162 0.43191684 zero Group1 243  917  223 147 0.623076923
## 618  0.566492420 0.43350758 zero Group1 243  916  224 147 0.623076923
## 133  0.565477905 0.43452210  one Group1 244  916  224 146 0.625641026
## 1442 0.565046337 0.43495366 zero Group1 244  915  225 146 0.625641026
## 485  0.564235728 0.43576427 zero Group1 244  914  226 146 0.625641026
## 480  0.564126439 0.43587356  one Group1 245  914  226 145 0.628205128
## 1507 0.563542967 0.43645703 zero Group1 245  913  227 145 0.628205128
## 1304 0.562814783 0.43718522 zero Group1 245  912  228 145 0.628205128
## 1404 0.562030936 0.43796906 zero Group1 245  911  229 145 0.628205128
## 494  0.561019790 0.43898021 zero Group1 245  910  230 145 0.628205128
## 435  0.559780295 0.44021970  one Group1 246  910  230 144 0.630769231
## 1159 0.559262583 0.44073742 zero Group1 246  909  231 144 0.630769231
## 555  0.557993374 0.44200663 zero Group1 246  908  232 144 0.630769231
## 1136 0.557351186 0.44264881 zero Group1 246  907  233 144 0.630769231
## 273  0.557350543 0.44264946  one Group1 247  907  233 143 0.633333333
## 794  0.556918616 0.44308138 zero Group1 247  906  234 143 0.633333333
## 608  0.556595953 0.44340405 zero Group1 247  905  235 143 0.633333333
## 853  0.555182773 0.44481723 zero Group1 247  904  236 143 0.633333333
## 82   0.554768082 0.44523192  one Group1 248  904  236 142 0.635897436
## 727  0.554653283 0.44534672 zero Group1 248  903  237 142 0.635897436
## 1296 0.554498587 0.44550141 zero Group1 248  902  238 142 0.635897436
## 790  0.554422652 0.44557735 zero Group1 248  901  239 142 0.635897436
## 1400 0.553988834 0.44601117  one Group1 249  901  239 141 0.638461538
## 20   0.553980610 0.44601939  one Group1 250  901  239 140 0.641025641
## 229  0.553099185 0.44690081  one Group1 251  901  239 139 0.643589744
## 938  0.552960789 0.44703921 zero Group1 251  900  240 139 0.643589744
## 1032 0.552776857 0.44722314 zero Group1 251  899  241 139 0.643589744
## 1530 0.551683247 0.44831675 zero Group1 251  898  242 139 0.643589744
## 1005 0.551064095 0.44893591 zero Group1 251  897  243 139 0.643589744
## 959  0.550978302 0.44902170 zero Group1 251  896  244 139 0.643589744
## 1333 0.550925151 0.44907485 zero Group1 251  895  245 139 0.643589744
## 795  0.550732084 0.44926792 zero Group1 251  894  246 139 0.643589744
## 1133 0.549370933 0.45062907 zero Group1 251  893  247 139 0.643589744
## 962  0.548327153 0.45167285 zero Group1 251  892  248 139 0.643589744
## 1226 0.548238909 0.45176109 zero Group1 251  891  249 139 0.643589744
## 1191 0.548096642 0.45190336  one Group1 252  891  249 138 0.646153846
## 169  0.547916245 0.45208376 zero Group1 252  890  250 138 0.646153846
## 34   0.546996451 0.45300355  one Group1 253  890  250 137 0.648717949
## 474  0.546983395 0.45301661  one Group1 254  890  250 136 0.651282051
## 942  0.546936502 0.45306350 zero Group1 254  889  251 136 0.651282051
## 426  0.546190574 0.45380943  one Group1 255  889  251 135 0.653846154
## 1517 0.545867755 0.45413224 zero Group1 255  888  252 135 0.653846154
## 1158 0.544622848 0.45537715 zero Group1 255  887  253 135 0.653846154
## 1356 0.544290568 0.45570943 zero Group1 255  886  254 135 0.653846154
## 192  0.543454988 0.45654501  one Group1 256  886  254 134 0.656410256
## 1135 0.543151842 0.45684816 zero Group1 256  885  255 134 0.656410256
## 976  0.542350629 0.45764937  one Group1 257  885  255 133 0.658974359
## 333  0.542011298 0.45798870  one Group1 258  885  255 132 0.661538462
## 1190 0.541820314 0.45817969  one Group1 259  885  255 131 0.664102564
## 640  0.541347212 0.45865279 zero Group1 259  884  256 131 0.664102564
## 1134 0.538013577 0.46198642 zero Group1 259  883  257 131 0.664102564
## 1116 0.537976109 0.46202389 zero Group1 259  882  258 131 0.664102564
## 101  0.537026975 0.46297302 zero Group1 259  881  259 131 0.664102564
## 818  0.536398457 0.46360154 zero Group1 259  880  260 131 0.664102564
## 803  0.535985899 0.46401410 zero Group1 259  879  261 131 0.664102564
## 565  0.535912615 0.46408739  one Group1 260  879  261 130 0.666666667
## 702  0.535902106 0.46409789 zero Group1 260  878  262 130 0.666666667
## 838  0.535807142 0.46419286 zero Group1 260  877  263 130 0.666666667
## 992  0.535720491 0.46427951 zero Group1 260  876  264 130 0.666666667
## 553  0.534632947 0.46536705 zero Group1 260  875  265 130 0.666666667
## 180  0.534435311 0.46556469 zero Group1 260  874  266 130 0.666666667
## 1479 0.532391356 0.46760864 zero Group1 260  873  267 130 0.666666667
## 940  0.532007903 0.46799210 zero Group1 260  872  268 130 0.666666667
## 11   0.531096993 0.46890301  one Group1 262  872  268 128 0.671794872
## 120  0.531096993 0.46890301  one Group1 262  872  268 128 0.671794872
## 847  0.530892283 0.46910772 zero Group1 262  871  269 128 0.671794872
## 802  0.530755328 0.46924467 zero Group1 262  870  270 128 0.671794872
## 1419 0.530690043 0.46930996 zero Group1 262  869  271 128 0.671794872
## 591  0.530441569 0.46955843 zero Group1 262  868  272 128 0.671794872
## 282  0.530379132 0.46962087  one Group1 263  868  272 127 0.674358974
## 986  0.529793431 0.47020657  one Group1 264  868  272 126 0.676923077
## 566  0.529113248 0.47088675  one Group1 265  868  272 125 0.679487179
## 821  0.528860660 0.47113934 zero Group1 265  867  273 125 0.679487179
## 708  0.528812787 0.47118721 zero Group1 265  866  274 125 0.679487179
## 977  0.528685749 0.47131425  one Group1 266  866  274 124 0.682051282
## 849  0.528433352 0.47156665 zero Group1 268  864  276 122 0.687179487
## 871  0.528433352 0.47156665 zero Group1 268  864  276 122 0.687179487
## 888  0.528433352 0.47156665  one Group1 268  864  276 122 0.687179487
## 895  0.528433352 0.47156665  one Group1 268  864  276 122 0.687179487
## 1069 0.526374173 0.47362583 zero Group1 268  863  277 122 0.687179487
## 998  0.525380276 0.47461972 zero Group1 268  862  278 122 0.687179487
## 1349 0.525237256 0.47476274 zero Group1 268  861  279 122 0.687179487
## 879  0.524966581 0.47503342 zero Group1 268  860  280 122 0.687179487
## 1478 0.524532616 0.47546738 zero Group1 268  859  281 122 0.687179487
## 1045 0.522630729 0.47736927 zero Group1 268  858  282 122 0.687179487
## 815  0.522342209 0.47765779 zero Group1 268  857  283 122 0.687179487
## 1475 0.522167168 0.47783283 zero Group1 268  856  284 122 0.687179487
## 1152 0.521433541 0.47856646 zero Group1 268  855  285 122 0.687179487
## 462  0.520570414 0.47942959 zero Group1 268  854  286 122 0.687179487
## 688  0.520398327 0.47960167 zero Group1 268  853  287 122 0.687179487
## 677  0.520149811 0.47985019  one Group1 269  853  287 121 0.689743590
## 1281 0.520112111 0.47988789 zero Group1 269  852  288 121 0.689743590
## 484  0.520060496 0.47993950  one Group1 270  852  288 120 0.692307692
## 1207 0.519681085 0.48031891 zero Group1 270  851  289 120 0.692307692
## 1372 0.518587350 0.48141265 zero Group1 270  850  290 120 0.692307692
## 671  0.518356899 0.48164310  one Group1 271  850  290 119 0.694871795
## 770  0.518011435 0.48198856 zero Group1 271  849  291 119 0.694871795
## 1520 0.517123005 0.48287699 zero Group1 271  848  292 119 0.694871795
## 987  0.516748971 0.48325103  one Group1 272  848  292 118 0.697435897
## 1358 0.516511427 0.48348857 zero Group1 272  847  293 118 0.697435897
## 298  0.514661844 0.48533816 zero Group1 272  846  294 118 0.697435897
## 1405 0.512832647 0.48716735 zero Group1 272  845  295 118 0.697435897
## 398  0.512580622 0.48741938 zero Group1 272  844  296 118 0.697435897
## 1487 0.512198471 0.48780153 zero Group1 272  843  297 118 0.697435897
## 226  0.510082081 0.48991792  one Group1 273  843  297 117 0.700000000
## 74   0.509561445 0.49043855  one Group1 274  843  297 116 0.702564103
## 1076 0.507473078 0.49252692 zero Group1 274  842  298 116 0.702564103
## 1070 0.506957481 0.49304252 zero Group1 274  841  299 116 0.702564103
## 121  0.506270132 0.49372987  one Group1 275  841  299 115 0.705128205
## 1067 0.505497601 0.49450240 zero Group1 275  840  300 115 0.705128205
## 31   0.505462377 0.49453762  one Group1 276  840  300 114 0.707692308
## 651  0.504760161 0.49523984 zero Group1 276  839  301 114 0.707692308
## 1411 0.504444121 0.49555588 zero Group1 276  838  302 114 0.707692308
## 1273 0.502736372 0.49726363 zero Group1 276  837  303 114 0.707692308
## 173  0.502118372 0.49788163 zero Group1 276  836  304 114 0.707692308
## 92   0.501888836 0.49811116  one Group1 277  836  304 113 0.710256410
## 236  0.501835721 0.49816428  one Group1 278  836  304 112 0.712820513
## 238  0.497523899 0.50247610  one Group1 279  836  304 111 0.715384615
## 793  0.497341966 0.50265803 zero Group1 279  835  305 111 0.715384615
## 400  0.496210066 0.50378993 zero Group1 279  834  306 111 0.715384615
## 328  0.495640949 0.50435905 zero Group1 279  833  307 111 0.715384615
## 672  0.495284104 0.50471590  one Group1 280  833  307 110 0.717948718
## 1243 0.495173826 0.50482617 zero Group1 280  832  308 110 0.717948718
## 533  0.495152328 0.50484767 zero Group1 280  831  309 110 0.717948718
## 1377 0.491338236 0.50866176 zero Group1 280  830  310 110 0.717948718
## 142  0.491138339 0.50886166  one Group1 281  830  310 109 0.720512821
## 661  0.489318189 0.51068181 zero Group1 281  829  311 109 0.720512821
## 1457 0.488767600 0.51123240 zero Group1 281  828  312 109 0.720512821
## 385  0.488712113 0.51128789 zero Group1 281  827  313 109 0.720512821
## 179  0.488636559 0.51136344  one Group1 282  827  313 108 0.723076923
## 457  0.488143578 0.51185642 zero Group1 282  826  314 108 0.723076923
## 354  0.487778437 0.51222156 zero Group1 282  825  315 108 0.723076923
## 1097 0.487639045 0.51236096 zero Group1 282  824  316 108 0.723076923
## 476  0.486967560 0.51303244  one Group1 283  824  316 107 0.725641026
## 592  0.486912247 0.51308775 zero Group1 283  823  317 107 0.725641026
## 1387 0.486389225 0.51361078 zero Group1 283  822  318 107 0.725641026
## 1499 0.485980628 0.51401937  one Group1 284  822  318 106 0.728205128
## 453  0.485686984 0.51431302 zero Group1 284  821  319 106 0.728205128
## 779  0.485583604 0.51441640  one Group1 285  821  319 105 0.730769231
## 670  0.483213515 0.51678649  one Group1 286  821  319 104 0.733333333
## 137  0.482470597 0.51752940  one Group1 287  821  319 103 0.735897436
## 253  0.482036148 0.51796385 zero Group1 287  820  320 103 0.735897436
## 1104 0.481855479 0.51814452 zero Group1 287  819  321 103 0.735897436
## 1105 0.481158643 0.51884136 zero Group1 287  818  322 103 0.735897436
## 1355 0.481076732 0.51892327 zero Group1 287  817  323 103 0.735897436
## 389  0.480917400 0.51908260  one Group1 288  817  323 102 0.738461538
## 469  0.480355751 0.51964425 zero Group1 288  816  324 102 0.738461538
## 209  0.478662897 0.52133710 zero Group1 288  815  325 102 0.738461538
## 1482 0.477942604 0.52205740 zero Group1 288  814  326 102 0.738461538
## 163  0.477617706 0.52238229 zero Group1 288  813  327 102 0.738461538
## 41   0.477248693 0.52275131 zero Group1 288  812  328 102 0.738461538
## 1098 0.477058347 0.52294165 zero Group1 288  811  329 102 0.738461538
## 388  0.477055090 0.52294491  one Group1 289  811  329 101 0.741025641
## 927  0.476827658 0.52317234 zero Group1 289  810  330 101 0.741025641
## 410  0.476600073 0.52339993 zero Group1 289  809  331 101 0.741025641
## 442  0.476234786 0.52376521 zero Group1 289  808  332 101 0.741025641
## 391  0.476129057 0.52387094  one Group1 290  808  332 100 0.743589744
## 171  0.475656839 0.52434316  one Group1 291  808  332  99 0.746153846
## 1113 0.475140916 0.52485908 zero Group1 291  807  333  99 0.746153846
## 471  0.475065608 0.52493439 zero Group1 291  806  334  99 0.746153846
## 1180 0.473217485 0.52678252 zero Group1 291  805  335  99 0.746153846
## 1086 0.473090010 0.52690999  one Group1 292  805  335  98 0.748717949
## 582  0.473036526 0.52696347 zero Group1 292  804  336  98 0.748717949
## 874  0.472830442 0.52716956 zero Group1 292  803  337  98 0.748717949
## 547  0.470488221 0.52951178  one Group1 293  803  337  97 0.751282051
## 448  0.469829246 0.53017075 zero Group1 293  802  338  97 0.751282051
## 898  0.469726429 0.53027357 zero Group1 293  801  339  97 0.751282051
## 528  0.467266079 0.53273392 zero Group1 293  800  340  97 0.751282051
## 545  0.465416523 0.53458348  one Group1 294  800  340  96 0.753846154
## 611  0.465071454 0.53492855 zero Group1 294  799  341  96 0.753846154
## 386  0.464790943 0.53520906 zero Group1 294  798  342  96 0.753846154
## 534  0.464717431 0.53528257 zero Group1 294  797  343  96 0.753846154
## 100  0.462691288 0.53730871 zero Group1 294  796  344  96 0.753846154
## 235  0.462256872 0.53774313  one Group1 295  796  344  95 0.756410256
## 1052 0.461714894 0.53828511 zero Group1 295  795  345  95 0.756410256
## 1343 0.461714214 0.53828579 zero Group1 295  794  346  95 0.756410256
## 349  0.459737527 0.54026247 zero Group1 295  793  347  95 0.756410256
## 996  0.459317521 0.54068248 zero Group1 295  792  348  95 0.756410256
## 178  0.458930124 0.54106988  one Group1 296  792  348  94 0.758974359
## 278  0.458598486 0.54140151  one Group1 297  792  348  93 0.761538462
## 858  0.458125995 0.54187400 zero Group1 297  791  349  93 0.761538462
## 1375 0.456124128 0.54387587 zero Group1 297  790  350  93 0.761538462
## 1119 0.455042891 0.54495711 zero Group1 297  789  351  93 0.761538462
## 482  0.454835167 0.54516483  one Group1 298  789  351  92 0.764102564
## 851  0.454708700 0.54529130 zero Group1 298  788  352  92 0.764102564
## 407  0.454236599 0.54576340 zero Group1 298  787  353  92 0.764102564
## 530  0.451969206 0.54803079 zero Group1 298  786  354  92 0.764102564
## 603  0.451467947 0.54853205 zero Group1 298  785  355  92 0.764102564
## 490  0.451192729 0.54880727 zero Group1 298  784  356  92 0.764102564
## 1178 0.451134887 0.54886511 zero Group1 298  783  357  92 0.764102564
## 232  0.450313562 0.54968644  one Group1 299  783  357  91 0.766666667
## 1408 0.450257101 0.54974290 zero Group1 299  782  358  91 0.766666667
## 1078 0.449931300 0.55006870 zero Group1 299  781  359  91 0.766666667
## 24   0.447541497 0.55245850 zero Group1 299  780  360  91 0.766666667
## 1425 0.447532171 0.55246783 zero Group1 299  779  361  91 0.766666667
## 1205 0.446784042 0.55321596 zero Group1 299  778  362  91 0.766666667
## 1055 0.446749091 0.55325091 zero Group1 299  777  363  91 0.766666667
## 585  0.446079270 0.55392073 zero Group1 299  776  364  91 0.766666667
## 624  0.445522336 0.55447766 zero Group1 299  775  365  91 0.766666667
## 378  0.442962264 0.55703774  one Group1 300  775  365  90 0.769230769
## 1129 0.441724823 0.55827518 zero Group1 300  774  366  90 0.769230769
## 1430 0.441578681 0.55842132 zero Group1 300  773  367  90 0.769230769
## 265  0.441254671 0.55874533  one Group1 301  772  368  89 0.771794872
## 1341 0.441254671 0.55874533 zero Group1 301  772  368  89 0.771794872
## 1357 0.440487073 0.55951293 zero Group1 301  771  369  89 0.771794872
## 134  0.440145454 0.55985455  one Group1 302  771  369  88 0.774358974
## 470  0.439968089 0.56003191 zero Group1 302  770  370  88 0.774358974
## 886  0.439240816 0.56075918  one Group1 303  770  370  87 0.776923077
## 1208 0.438582445 0.56141756 zero Group1 303  769  371  87 0.776923077
## 1071 0.437189558 0.56281044 zero Group1 303  768  372  87 0.776923077
## 1474 0.436180676 0.56381932 zero Group1 303  767  373  87 0.776923077
## 854  0.435785725 0.56421428 zero Group1 304  766  374  86 0.779487179
## 892  0.435785725 0.56421428  one Group1 304  766  374  86 0.779487179
## 440  0.435444472 0.56455553 zero Group1 304  765  375  86 0.779487179
## 456  0.434945804 0.56505420 zero Group1 304  764  376  86 0.779487179
## 225  0.434736654 0.56526335  one Group1 305  764  376  85 0.782051282
## 1150 0.434456262 0.56554374 zero Group1 305  763  377  85 0.782051282
## 1092 0.433897807 0.56610219  one Group1 306  763  377  84 0.784615385
## 162  0.433744898 0.56625510 zero Group1 306  762  378  84 0.784615385
## 422  0.432618699 0.56738130 zero Group1 306  761  379  84 0.784615385
## 564  0.431854381 0.56814562  one Group1 307  761  379  83 0.787179487
## 452  0.431763758 0.56823624 zero Group1 307  760  380  83 0.787179487
## 176  0.431692956 0.56830704 zero Group1 307  759  381  83 0.787179487
## 1332 0.431610685 0.56838932 zero Group1 307  758  382  83 0.787179487
## 521  0.431536994 0.56846301 zero Group1 307  757  383  83 0.787179487
## 168  0.431087424 0.56891258 zero Group1 307  756  384  83 0.787179487
## 792  0.427609191 0.57239081 zero Group1 307  755  385  83 0.787179487
## 623  0.426277213 0.57372279 zero Group1 307  754  386  83 0.787179487
## 487  0.426006971 0.57399303 zero Group1 307  753  387  83 0.787179487
## 909  0.425192323 0.57480768 zero Group1 307  752  388  83 0.787179487
## 1085 0.425032340 0.57496766  one Group1 308  752  388  82 0.789743590
## 1272 0.424958712 0.57504129 zero Group1 308  751  389  82 0.789743590
## 613  0.424496936 0.57550306 zero Group1 308  750  390  82 0.789743590
## 609  0.424033529 0.57596647 zero Group1 308  749  391  82 0.789743590
## 1331 0.422931634 0.57706837 zero Group1 308  748  392  82 0.789743590
## 765  0.421361072 0.57863893 zero Group1 308  747  393  82 0.789743590
## 599  0.420862572 0.57913743 zero Group1 308  746  394  82 0.789743590
## 1200 0.420810687 0.57918931  one Group1 309  746  394  81 0.792307692
## 1016 0.420270797 0.57972920 zero Group1 309  745  395  81 0.792307692
## 750  0.419333837 0.58066616 zero Group1 309  744  396  81 0.792307692
## 882  0.418294084 0.58170592 zero Group1 309  743  397  81 0.792307692
## 459  0.417927946 0.58207205 zero Group1 309  742  398  81 0.792307692
## 1480 0.417302413 0.58269759 zero Group1 309  741  399  81 0.792307692
## 1389 0.417197691 0.58280231  one Group1 310  741  399  80 0.794871795
## 1391 0.416510996 0.58348900  one Group1 311  741  399  79 0.797435897
## 1390 0.416460937 0.58353906  one Group1 312  741  399  78 0.800000000
## 1064 0.416049493 0.58395051 zero Group1 312  740  400  78 0.800000000
## 1398 0.415724557 0.58427544  one Group1 313  740  400  77 0.802564103
## 598  0.414333908 0.58566609 zero Group1 313  739  401  77 0.802564103
## 584  0.414306971 0.58569303 zero Group1 313  738  402  77 0.802564103
## 944  0.412881434 0.58711857 zero Group1 313  737  403  77 0.802564103
## 103  0.412356317 0.58764368 zero Group1 313  736  404  77 0.802564103
## 188  0.410371838 0.58962816  one Group1 314  736  404  76 0.805128205
## 1463 0.409608570 0.59039143 zero Group1 314  735  405  76 0.805128205
## 781  0.409545654 0.59045435  one Group1 315  735  405  75 0.807692308
## 341  0.409428411 0.59057159  one Group1 316  735  405  74 0.810256410
## 602  0.408741624 0.59125838 zero Group1 316  734  406  74 0.810256410
## 1161 0.408620735 0.59137927 zero Group1 316  733  407  74 0.810256410
## 771  0.407865221 0.59213478 zero Group1 316  732  408  74 0.810256410
## 540  0.404836535 0.59516346 zero Group1 316  731  409  74 0.810256410
## 725  0.404261766 0.59573823 zero Group1 316  730  410  74 0.810256410
## 745  0.403542181 0.59645782 zero Group1 316  729  411  74 0.810256410
## 510  0.402578112 0.59742189 zero Group1 316  728  412  74 0.810256410
## 522  0.402338990 0.59766101 zero Group1 316  727  413  74 0.810256410
## 2    0.402129782 0.59787022  one Group1 317  727  413  73 0.812820513
## 1087 0.401874059 0.59812594  one Group1 318  727  413  72 0.815384615
## 950  0.401542361 0.59845764 zero Group1 318  726  414  72 0.815384615
## 662  0.401329202 0.59867080 zero Group1 318  725  415  72 0.815384615
## 768  0.401177073 0.59882293 zero Group1 318  724  416  72 0.815384615
## 63   0.401033540 0.59896646 zero Group1 318  723  417  72 0.815384615
## 107  0.400667422 0.59933258 zero Group1 318  722  418  72 0.815384615
## 753  0.400338714 0.59966129 zero Group1 318  721  419  72 0.815384615
## 713  0.400141056 0.59985894 zero Group1 318  720  420  72 0.815384615
## 1395 0.400077862 0.59992214  one Group1 319  720  420  71 0.817948718
## 601  0.399142907 0.60085709 zero Group1 319  719  421  71 0.817948718
## 1428 0.398084530 0.60191547 zero Group1 319  718  422  71 0.817948718
## 775  0.397342619 0.60265738 zero Group1 319  717  423  71 0.817948718
## 190  0.397264919 0.60273508  one Group1 320  717  423  70 0.820512821
## 715  0.397008870 0.60299113 zero Group1 320  716  424  70 0.820512821
## 339  0.396884444 0.60311556  one Group1 321  716  424  69 0.823076923
## 1330 0.394818935 0.60518107 zero Group1 321  715  425  69 0.823076923
## 375  0.394447653 0.60555235  one Group1 322  715  425  68 0.825641026
## 99   0.394391709 0.60560829 zero Group1 322  714  426  68 0.825641026
## 785  0.393980604 0.60601940  one Group1 323  714  426  67 0.828205128
## 139  0.393767507 0.60623249  one Group1 324  714  426  66 0.830769231
## 655  0.393655572 0.60634443 zero Group1 324  713  427  66 0.830769231
## 1451 0.393382900 0.60661710 zero Group1 324  712  428  66 0.830769231
## 1527 0.393159135 0.60684086 zero Group1 324  711  429  66 0.830769231
## 95   0.392935778 0.60706422 zero Group1 324  710  430  66 0.830769231
## 458  0.392778146 0.60722185 zero Group1 324  709  431  66 0.830769231
## 154  0.392744171 0.60725583  one Group1 325  709  431  65 0.833333333
## 579  0.391824379 0.60817562 zero Group1 325  708  432  65 0.833333333
## 161  0.391603363 0.60839664 zero Group1 325  707  433  65 0.833333333
## 562  0.391175845 0.60882415 zero Group1 325  706  434  65 0.833333333
## 220  0.388379256 0.61162074 zero Group1 325  705  435  65 0.833333333
## 175  0.387970547 0.61202945 zero Group1 325  704  436  65 0.833333333
## 741  0.387919596 0.61208040 zero Group1 325  703  437  65 0.833333333
## 919  0.386509067 0.61349093 zero Group1 325  702  438  65 0.833333333
## 873  0.386177506 0.61382249 zero Group1 325  701  439  65 0.833333333
## 274  0.385286230 0.61471377  one Group1 326  701  439  64 0.835897436
## 1282 0.385054142 0.61494586 zero Group1 326  700  440  64 0.835897436
## 311  0.384951513 0.61504849 zero Group1 326  699  441  64 0.835897436
## 39   0.384241723 0.61575828  one Group1 327  699  441  63 0.838461538
## 371  0.384039426 0.61596057  one Group1 328  698  442  62 0.841025641
## 1448 0.384039426 0.61596057 zero Group1 328  698  442  62 0.841025641
## 1232 0.384009144 0.61599086 zero Group1 328  697  443  62 0.841025641
## 219  0.382971276 0.61702872 zero Group1 328  696  444  62 0.841025641
## 763  0.382159836 0.61784016 zero Group1 328  695  445  62 0.841025641
## 580  0.381803886 0.61819611 zero Group1 328  694  446  62 0.841025641
## 869  0.381244604 0.61875540 zero Group1 328  693  447  62 0.841025641
## 110  0.380899291 0.61910071  one Group1 329  693  447  61 0.843589744
## 45   0.380707395 0.61929260 zero Group1 329  692  448  61 0.843589744
## 27   0.377570816 0.62242918 zero Group1 329  691  449  61 0.843589744
## 654  0.377125460 0.62287454 zero Group1 329  690  450  61 0.843589744
## 42   0.377107826 0.62289217  one Group1 330  690  450  60 0.846153846
## 234  0.376741028 0.62325897  one Group1 331  690  450  59 0.848717949
## 1305 0.376066203 0.62393380 zero Group1 331  689  451  59 0.848717949
## 478  0.375614614 0.62438539  one Group1 332  689  451  58 0.851282051
## 1284 0.375173511 0.62482649 zero Group1 332  688  452  58 0.851282051
## 308  0.374957414 0.62504259 zero Group1 332  687  453  58 0.851282051
## 548  0.374263164 0.62573684 zero Group1 332  686  454  58 0.851282051
## 364  0.373706781 0.62629322 zero Group1 332  685  455  58 0.851282051
## 1018 0.372443991 0.62755601 zero Group1 332  684  456  58 0.851282051
## 203  0.371410961 0.62858904 zero Group1 332  683  457  58 0.851282051
## 1427 0.370891160 0.62910884 zero Group1 332  682  458  58 0.851282051
## 94   0.370609410 0.62939059 zero Group1 332  681  459  58 0.851282051
## 777  0.369466373 0.63053363  one Group1 333  681  459  57 0.853846154
## 297  0.368960051 0.63103995 zero Group1 333  680  460  57 0.853846154
## 149  0.368875345 0.63112465  one Group1 334  680  460  56 0.856410256
## 218  0.368632052 0.63136795  one Group1 335  680  460  55 0.858974359
## 506  0.367773623 0.63222638 zero Group1 335  679  461  55 0.858974359
## 3    0.367475207 0.63252479 zero Group1 335  678  462  55 0.858974359
## 1012 0.366340538 0.63365946 zero Group1 335  677  463  55 0.858974359
## 524  0.365565310 0.63443469 zero Group1 335  676  464  55 0.858974359
## 787  0.364626594 0.63537341  one Group1 336  676  464  54 0.861538462
## 946  0.363803357 0.63619664 zero Group1 336  675  465  54 0.861538462
## 496  0.362746704 0.63725330 zero Group1 336  674  466  54 0.861538462
## 1299 0.361406167 0.63859383 zero Group1 336  673  467  54 0.861538462
## 26   0.360460074 0.63953993 zero Group1 336  672  468  54 0.861538462
## 1429 0.360136655 0.63986335 zero Group1 336  671  469  54 0.861538462
## 68   0.359240097 0.64075990 zero Group1 336  670  470  54 0.861538462
## 433  0.359221024 0.64077898  one Group1 337  670  470  53 0.864102564
## 1062 0.358701693 0.64129831 zero Group1 337  669  471  53 0.864102564
## 1316 0.357834528 0.64216547 zero Group1 337  668  472  53 0.864102564
## 1195 0.357078685 0.64292132  one Group1 338  668  472  52 0.866666667
## 374  0.356904839 0.64309516  one Group1 339  668  472  51 0.869230769
## 498  0.356721362 0.64327864 zero Group1 339  667  473  51 0.869230769
## 111  0.356560848 0.64343915 zero Group1 339  666  474  51 0.869230769
## 1050 0.356386810 0.64361319 zero Group1 339  665  475  51 0.869230769
## 1468 0.356235798 0.64376420 zero Group1 339  664  476  51 0.869230769
## 1376 0.356232168 0.64376783 zero Group1 339  663  477  51 0.869230769
## 486  0.355327719 0.64467228 zero Group1 339  662  478  51 0.869230769
## 1127 0.355223824 0.64477618 zero Group1 339  661  479  51 0.869230769
## 1293 0.354447068 0.64555293 zero Group1 339  660  480  51 0.869230769
## 1068 0.351840688 0.64815931 zero Group1 339  659  481  51 0.869230769
## 1132 0.351227607 0.64877239 zero Group1 339  658  482  51 0.869230769
## 414  0.350278712 0.64972129 zero Group1 339  657  483  51 0.869230769
## 945  0.348867616 0.65113238 zero Group1 339  656  484  51 0.869230769
## 1131 0.348452038 0.65154796 zero Group1 339  655  485  51 0.869230769
## 338  0.348110520 0.65188948  one Group1 340  655  485  50 0.871794872
## 1439 0.347254618 0.65274538 zero Group1 340  654  486  50 0.871794872
## 791  0.346158662 0.65384134 zero Group1 340  653  487  50 0.871794872
## 632  0.345890359 0.65410964 zero Group1 340  652  488  50 0.871794872
## 61   0.345406118 0.65459388  one Group1 341  652  488  49 0.874358974
## 973  0.345326138 0.65467386 zero Group1 341  651  489  49 0.874358974
## 1443 0.345198969 0.65480103 zero Group1 341  650  490  49 0.874358974
## 810  0.344650863 0.65534914 zero Group1 341  649  491  49 0.874358974
## 1049 0.344641563 0.65535844 zero Group1 341  648  492  49 0.874358974
## 1020 0.344580113 0.65541989 zero Group1 341  647  493  49 0.874358974
## 1342 0.344220234 0.65577977 zero Group1 341  646  494  49 0.874358974
## 1423 0.343583920 0.65641608 zero Group1 341  645  495  49 0.874358974
## 36   0.343582832 0.65641717 zero Group1 341  644  496  49 0.874358974
## 1449 0.343440356 0.65655964 zero Group1 341  643  497  49 0.874358974
## 201  0.342883994 0.65711601 zero Group1 341  642  498  49 0.874358974
## 1042 0.341422377 0.65857762 zero Group1 341  641  499  49 0.874358974
## 1096 0.340919676 0.65908032 zero Group1 341  640  500  49 0.874358974
## 974  0.340829664 0.65917034 zero Group1 341  639  501  49 0.874358974
## 239  0.338728334 0.66127167  one Group1 342  639  501  48 0.876923077
## 268  0.337341619 0.66265838  one Group1 343  639  501  47 0.879487179
## 866  0.337301642 0.66269836 zero Group1 343  638  502  47 0.879487179
## 943  0.336951009 0.66304899 zero Group1 343  637  503  47 0.879487179
## 796  0.336908210 0.66309179 zero Group1 343  636  504  47 0.879487179
## 1441 0.336000641 0.66399936 zero Group1 343  635  505  47 0.879487179
## 439  0.335488655 0.66451134 zero Group1 343  634  506  47 0.879487179
## 908  0.334874724 0.66512528 zero Group1 343  633  507  47 0.879487179
## 160  0.334862262 0.66513774 zero Group1 343  632  508  47 0.879487179
## 556  0.334165913 0.66583409 zero Group1 343  631  509  47 0.879487179
## 21   0.333655371 0.66634463  one Group1 344  631  509  46 0.882051282
## 1015 0.332784104 0.66721590 zero Group1 344  630  510  46 0.882051282
## 571  0.331880639 0.66811936  one Group1 345  630  510  45 0.884615385
## 1278 0.331487334 0.66851267 zero Group1 345  629  511  45 0.884615385
## 1010 0.330448231 0.66955177 zero Group1 345  628  512  45 0.884615385
## 164  0.325628341 0.67437166 zero Group1 345  627  513  45 0.884615385
## 1120 0.325335726 0.67466427 zero Group1 345  626  514  45 0.884615385
## 760  0.324514075 0.67548592 zero Group1 345  625  515  45 0.884615385
## 1115 0.322699672 0.67730033 zero Group1 345  624  516  45 0.884615385
## 911  0.322293106 0.67770689 zero Group1 345  623  517  45 0.884615385
## 523  0.322243880 0.67775612 zero Group1 345  622  518  45 0.884615385
## 764  0.320895620 0.67910438 zero Group1 345  621  519  45 0.884615385
## 255  0.319650070 0.68034993 zero Group1 345  620  520  45 0.884615385
## 1048 0.318332535 0.68166747 zero Group1 345  619  521  45 0.884615385
## 1095 0.318235606 0.68176439 zero Group1 345  618  522  45 0.884615385
## 1090 0.317512760 0.68248724  one Group1 346  618  522  44 0.887179487
## 675  0.316576698 0.68342330  one Group1 347  618  522  43 0.889743590
## 1186 0.316384299 0.68361570 zero Group1 347  617  523  43 0.889743590
## 922  0.316261087 0.68373891 zero Group1 347  616  524  43 0.889743590
## 67   0.314712125 0.68528787  one Group1 348  616  524  42 0.892307692
## 784  0.314680331 0.68531967  one Group1 349  616  524  41 0.894871795
## 242  0.312926966 0.68707303 zero Group1 349  615  525  41 0.894871795
## 489  0.312158307 0.68784169 zero Group1 349  614  526  41 0.894871795
## 653  0.311734557 0.68826544 zero Group1 349  613  527  41 0.894871795
## 1402 0.310767573 0.68923243 zero Group1 349  612  528  41 0.894871795
## 960  0.310683916 0.68931608 zero Group1 349  611  529  41 0.894871795
## 1363 0.310077956 0.68992204 zero Group1 349  610  530  41 0.894871795
## 91   0.310025401 0.68997460  one Group1 350  610  530  40 0.897435897
## 1040 0.309590139 0.69040986 zero Group1 350  609  531  40 0.897435897
## 967  0.309282933 0.69071707 zero Group1 350  608  532  40 0.897435897
## 1421 0.307405937 0.69259406 zero Group1 350  607  533  40 0.897435897
## 574  0.307263330 0.69273667  one Group1 351  607  533  39 0.900000000
## 531  0.307260345 0.69273965 zero Group1 351  606  534  39 0.900000000
## 703  0.307222253 0.69277775 zero Group1 351  605  535  39 0.900000000
## 402  0.305478274 0.69452173 zero Group1 351  604  536  39 0.900000000
## 1512 0.304194152 0.69580585 zero Group1 351  603  537  39 0.900000000
## 846  0.302820727 0.69717927 zero Group1 351  602  538  39 0.900000000
## 511  0.302429215 0.69757078 zero Group1 351  601  539  39 0.900000000
## 1162 0.300596632 0.69940337 zero Group1 351  600  540  39 0.900000000
## 1320 0.299768962 0.70023104 zero Group1 351  599  541  39 0.900000000
## 244  0.299599652 0.70040035 zero Group1 351  598  542  39 0.900000000
## 53   0.298792288 0.70120771  one Group1 352  598  542  38 0.902564103
## 1370 0.297905293 0.70209471 zero Group1 352  597  543  38 0.902564103
## 984  0.296022071 0.70397793  one Group1 353  597  543  37 0.905128205
## 1456 0.295842581 0.70415742 zero Group1 353  596  544  37 0.905128205
## 674  0.294581985 0.70541801  one Group1 354  596  544  36 0.907692308
## 937  0.294511959 0.70548804 zero Group1 354  595  545  36 0.907692308
## 1028 0.293309599 0.70669040 zero Group1 354  594  546  36 0.907692308
## 71   0.292656117 0.70734388 zero Group1 354  593  547  36 0.907692308
## 33   0.292279978 0.70772002  one Group1 355  593  547  35 0.910256410
## 197  0.291923764 0.70807624 zero Group1 355  592  548  35 0.910256410
## 1034 0.291857025 0.70814298 zero Group1 355  591  549  35 0.910256410
## 925  0.291399239 0.70860076 zero Group1 355  590  550  35 0.910256410
## 1054 0.290753290 0.70924671 zero Group1 355  589  551  35 0.910256410
## 700  0.289090072 0.71090993 zero Group1 355  588  552  35 0.910256410
## 995  0.287353907 0.71264609 zero Group1 355  587  553  35 0.910256410
## 867  0.287351700 0.71264830 zero Group1 355  586  554  35 0.910256410
## 1144 0.287031604 0.71296840 zero Group1 355  585  555  35 0.910256410
## 127  0.286994814 0.71300519  one Group1 356  584  556  34 0.912820513
## 842  0.286994814 0.71300519 zero Group1 356  584  556  34 0.912820513
## 666  0.286443160 0.71355684 zero Group1 356  583  557  34 0.912820513
## 769  0.284956463 0.71504354 zero Group1 356  582  558  34 0.912820513
## 837  0.282753811 0.71724619 zero Group1 356  581  559  34 0.912820513
## 1287 0.282559370 0.71744063 zero Group1 356  580  560  34 0.912820513
## 1472 0.282373218 0.71762678 zero Group1 356  579  561  34 0.912820513
## 117  0.280372058 0.71962794 zero Group1 356  578  562  34 0.912820513
## 714  0.278500935 0.72149906 zero Group1 356  577  563  34 0.912820513
## 1151 0.277318613 0.72268139 zero Group1 356  576  564  34 0.912820513
## 955  0.276728103 0.72327190 zero Group1 356  575  565  34 0.912820513
## 1271 0.275474660 0.72452534  one Group1 357  575  565  33 0.915384615
## 1031 0.275468104 0.72453190 zero Group1 357  574  566  33 0.915384615
## 1110 0.273417215 0.72658278 zero Group1 357  573  567  33 0.915384615
## 393  0.273141013 0.72685899  one Group1 358  573  567  32 0.917948718
## 958  0.272230927 0.72776907 zero Group1 358  572  568  32 0.917948718
## 1014 0.272075770 0.72792423 zero Group1 358  571  569  32 0.917948718
## 910  0.271386218 0.72861378 zero Group1 358  570  570  32 0.917948718
## 954  0.271304372 0.72869563 zero Group1 358  569  571  32 0.917948718
## 848  0.270901881 0.72909812 zero Group1 358  568  572  32 0.917948718
## 1154 0.270829838 0.72917016 zero Group1 358  567  573  32 0.917948718
## 679  0.270814743 0.72918526  one Group1 359  567  573  31 0.920512821
## 195  0.270776090 0.72922391 zero Group1 359  566  574  31 0.920512821
## 583  0.270381491 0.72961851 zero Group1 359  565  575  31 0.920512821
## 650  0.269800409 0.73019959 zero Group1 359  564  576  31 0.920512821
## 119  0.269638982 0.73036102  one Group1 360  564  576  30 0.923076923
## 520  0.269116477 0.73088352 zero Group1 360  563  577  30 0.923076923
## 1314 0.269060210 0.73093979 zero Group1 360  562  578  30 0.923076923
## 1350 0.268098673 0.73190133 zero Group1 360  561  579  30 0.923076923
## 514  0.267254864 0.73274514 zero Group1 360  560  580  30 0.923076923
## 788  0.267196691 0.73280331  one Group1 361  560  580  29 0.925641026
## 434  0.267048455 0.73295155 zero Group1 361  559  581  29 0.925641026
## 1060 0.266868966 0.73313103 zero Group1 361  558  582  29 0.925641026
## 404  0.265843740 0.73415626 zero Group1 361  557  583  29 0.925641026
## 543  0.265708505 0.73429149 zero Group1 361  556  584  29 0.925641026
## 156  0.264558064 0.73544194  one Group1 362  556  584  28 0.928205128
## 58   0.264405638 0.73559436 zero Group1 362  555  585  28 0.928205128
## 933  0.263104411 0.73689559 zero Group1 362  554  586  28 0.928205128
## 1263 0.262446381 0.73755362  one Group1 363  554  586  27 0.930769231
## 1247 0.262241021 0.73775898 zero Group1 363  553  587  27 0.930769231
## 683  0.261246758 0.73875324 zero Group1 363  552  588  27 0.930769231
## 816  0.259816344 0.74018366 zero Group1 363  551  589  27 0.930769231
## 1252 0.258958097 0.74104190 zero Group1 363  550  590  27 0.930769231
## 631  0.257667185 0.74233281 zero Group1 363  549  591  27 0.930769231
## 901  0.257634229 0.74236577 zero Group1 363  548  592  27 0.930769231
## 868  0.255743780 0.74425622 zero Group1 363  547  593  27 0.930769231
## 1160 0.254941626 0.74505837 zero Group1 363  546  594  27 0.930769231
## 518  0.254582656 0.74541734 zero Group1 363  545  595  27 0.930769231
## 833  0.254553283 0.74544672 zero Group1 363  544  596  27 0.930769231
## 1112 0.254446141 0.74555386 zero Group1 363  543  597  27 0.930769231
## 1359 0.254385197 0.74561480 zero Group1 363  542  598  27 0.930769231
## 738  0.254345596 0.74565440 zero Group1 363  541  599  27 0.930769231
## 1194 0.254191945 0.74580805  one Group1 364  541  599  26 0.933333333
## 315  0.254150313 0.74584969 zero Group1 364  540  600  26 0.933333333
## 829  0.253518389 0.74648161 zero Group1 364  539  601  26 0.933333333
## 682  0.253515151 0.74648485  one Group1 365  539  601  25 0.935897436
## 934  0.252948382 0.74705162 zero Group1 365  538  602  25 0.935897436
## 1173 0.252617995 0.74738201 zero Group1 365  537  603  25 0.935897436
## 647  0.252501022 0.74749898 zero Group1 365  536  604  25 0.935897436
## 1368 0.252230714 0.74776929 zero Group1 365  535  605  25 0.935897436
## 269  0.251220435 0.74877956  one Group1 366  535  605  24 0.938461538
## 1258 0.250658607 0.74934139 zero Group1 366  534  606  24 0.938461538
## 1268 0.250456173 0.74954383  one Group1 367  534  606  23 0.941025641
## 1511 0.250029921 0.74997008 zero Group1 367  533  607  23 0.941025641
## 1353 0.249955496 0.75004450 zero Group1 367  532  608  23 0.941025641
## 128  0.249500837 0.75049916 zero Group1 367  531  609  23 0.941025641
## 554  0.247361400 0.75263860 zero Group1 367  530  610  23 0.941025641
## 1056 0.246907841 0.75309216 zero Group1 367  529  611  23 0.941025641
## 836  0.246851780 0.75314822 zero Group1 367  528  612  23 0.941025641
## 348  0.246851750 0.75314825  one Group1 368  528  612  22 0.943589744
## 542  0.243878887 0.75612111 zero Group1 368  527  613  22 0.943589744
## 517  0.243513508 0.75648649 zero Group1 368  526  614  22 0.943589744
## 1235 0.242971230 0.75702877 zero Group1 368  525  615  22 0.943589744
## 363  0.242881204 0.75711880 zero Group1 368  524  616  22 0.943589744
## 73   0.242302146 0.75769785  one Group1 369  524  616  21 0.946153846
## 1365 0.241729494 0.75827051 zero Group1 369  523  617  21 0.946153846
## 669  0.237782148 0.76221785 zero Group1 369  522  618  21 0.946153846
## 48   0.237569346 0.76243065  one Group1 370  522  618  20 0.948717949
## 118  0.237359985 0.76264002 zero Group1 370  521  619  20 0.948717949
## 1063 0.234960808 0.76503919 zero Group1 370  520  620  20 0.948717949
## 861  0.234523928 0.76547607 zero Group1 370  519  621  20 0.948717949
## 1044 0.233473947 0.76652605 zero Group1 370  518  622  20 0.948717949
## 845  0.232577475 0.76742252 zero Group1 370  517  623  20 0.948717949
## 49   0.231246900 0.76875310  one Group1 371  517  623  19 0.951282051
## 1283 0.231137024 0.76886298 zero Group1 371  516  624  19 0.951282051
## 668  0.230964652 0.76903535 zero Group1 371  515  625  19 0.951282051
## 401  0.230919599 0.76908040 zero Group1 371  514  626  19 0.951282051
## 1420 0.229355887 0.77064411 zero Group1 371  513  627  19 0.951282051
## 912  0.227619663 0.77238034 zero Group1 371  512  628  19 0.951282051
## 261  0.225646483 0.77435352  one Group1 372  512  628  18 0.953846154
## 686  0.225163972 0.77483603 zero Group1 372  511  629  18 0.953846154
## 252  0.224860574 0.77513943 zero Group1 372  510  630  18 0.953846154
## 1466 0.224481837 0.77551816 zero Group1 372  509  631  18 0.953846154
## 413  0.224462342 0.77553766 zero Group1 372  508  632  18 0.953846154
## 467  0.224394814 0.77560519 zero Group1 372  507  633  18 0.953846154
## 660  0.223786370 0.77621363 zero Group1 372  506  634  18 0.953846154
## 1276 0.223749453 0.77625055 zero Group1 372  505  635  18 0.953846154
## 864  0.223476453 0.77652355 zero Group1 372  504  636  18 0.953846154
## 999  0.222629306 0.77737069 zero Group1 372  503  637  18 0.953846154
## 860  0.222272117 0.77772788 zero Group1 372  502  638  18 0.953846154
## 420  0.221699979 0.77830002 zero Group1 372  501  639  18 0.953846154
## 403  0.221232323 0.77876768 zero Group1 372  500  640  18 0.953846154
## 1118 0.220411821 0.77958818 zero Group1 372  499  641  18 0.953846154
## 1025 0.220256104 0.77974390 zero Group1 372  498  642  18 0.953846154
## 289  0.219685908 0.78031409  one Group1 373  498  642  17 0.956410256
## 643  0.218757651 0.78124235 zero Group1 373  497  643  17 0.956410256
## 1058 0.218605634 0.78139437 zero Group1 373  496  644  17 0.956410256
## 1467 0.218181780 0.78181822 zero Group1 373  495  645  17 0.956410256
## 1023 0.216058619 0.78394138 zero Group1 373  494  646  17 0.956410256
## 55   0.215137352 0.78486265 zero Group1 373  493  647  17 0.956410256
## 1022 0.213883370 0.78611663 zero Group1 373  492  648  17 0.956410256
## 1366 0.213841406 0.78615859 zero Group1 373  491  649  17 0.956410256
## 504  0.213440583 0.78655942 zero Group1 373  490  650  17 0.956410256
## 1024 0.212903656 0.78709634 zero Group1 373  489  651  17 0.956410256
## 930  0.212833729 0.78716627 zero Group1 373  488  652  17 0.956410256
## 1471 0.212352441 0.78764756 zero Group1 373  487  653  17 0.956410256
## 1182 0.211885721 0.78811428 zero Group1 373  486  654  17 0.956410256
## 114  0.211025454 0.78897455 zero Group1 373  485  655  17 0.956410256
## 862  0.209331166 0.79066883 zero Group1 373  484  656  17 0.956410256
## 59   0.209265061 0.79073494 zero Group1 373  483  657  17 0.956410256
## 418  0.208905248 0.79109475 zero Group1 373  482  658  17 0.956410256
## 827  0.208620749 0.79137925 zero Group1 373  481  659  17 0.956410256
## 1317 0.206752818 0.79324718 zero Group1 373  480  660  17 0.956410256
## 450  0.206537444 0.79346256 zero Group1 373  479  661  17 0.956410256
## 513  0.205896358 0.79410364 zero Group1 373  478  662  17 0.956410256
## 1199 0.205024783 0.79497522  one Group1 374  478  662  16 0.958974359
## 1021 0.204979878 0.79502012 zero Group1 374  477  663  16 0.958974359
## 279  0.204692293 0.79530771 zero Group1 374  476  664  16 0.958974359
## 516  0.204137069 0.79586293 zero Group1 374  475  665  16 0.958974359
## 1026 0.204028458 0.79597154 zero Group1 374  474  666  16 0.958974359
## 951  0.202650271 0.79734973 zero Group1 374  473  667  16 0.958974359
## 734  0.202016877 0.79798312 zero Group1 374  472  668  16 0.958974359
## 1126 0.201712288 0.79828771 zero Group1 374  471  669  16 0.958974359
## 635  0.201349082 0.79865092 zero Group1 374  470  670  16 0.958974359
## 652  0.201246883 0.79875312 zero Group1 374  469  671  16 0.958974359
## 515  0.200871845 0.79912816 zero Group1 374  468  672  16 0.958974359
## 1369 0.199356420 0.80064358 zero Group1 374  467  673  16 0.958974359
## 310  0.199302803 0.80069720 zero Group1 374  466  674  16 0.958974359
## 752  0.197977359 0.80202264 zero Group1 374  465  675  16 0.958974359
## 1225 0.197389325 0.80261068 zero Group1 374  464  676  16 0.958974359
## 248  0.196761091 0.80323891 zero Group1 374  463  677  16 0.958974359
## 1124 0.195407639 0.80459236 zero Group1 374  462  678  16 0.958974359
## 1204 0.195057474 0.80494253 zero Group1 374  461  679  16 0.958974359
## 1123 0.194939599 0.80506040 zero Group1 374  460  680  16 0.958974359
## 254  0.193066934 0.80693307 zero Group1 374  459  681  16 0.958974359
## 1122 0.193000377 0.80699962 zero Group1 374  458  682  16 0.958974359
## 411  0.192677946 0.80732205 zero Group1 374  457  683  16 0.958974359
## 1206 0.191355725 0.80864427 zero Group1 374  456  684  16 0.958974359
## 820  0.191043587 0.80895641 zero Group1 374  455  685  16 0.958974359
## 747  0.190865615 0.80913439 zero Group1 374  454  686  16 0.958974359
## 447  0.190019581 0.80998042 zero Group1 374  453  687  16 0.958974359
## 9    0.189249539 0.81075046 zero Group1 374  452  688  16 0.958974359
## 1197 0.189111388 0.81088861  one Group1 375  452  688  15 0.961538462
## 856  0.189067860 0.81093214 zero Group1 375  451  689  15 0.961538462
## 72   0.189012162 0.81098784 zero Group1 375  450  690  15 0.961538462
## 313  0.188513062 0.81148694 zero Group1 375  449  691  15 0.961538462
## 811  0.188047069 0.81195293 zero Group1 375  448  692  15 0.961538462
## 896  0.187496604 0.81250340  one Group1 376  448  692  14 0.964102564
## 1383 0.187016451 0.81298355 zero Group1 376  447  693  14 0.964102564
## 1347 0.186777157 0.81322284 zero Group1 376  446  694  14 0.964102564
## 408  0.185630606 0.81436939 zero Group1 376  445  695  14 0.964102564
## 990  0.185135040 0.81486496 zero Group1 376  444  696  14 0.964102564
## 451  0.185002112 0.81499789 zero Group1 376  443  697  14 0.964102564
## 903  0.184915812 0.81508419 zero Group1 376  442  698  14 0.964102564
## 449  0.183048519 0.81695148 zero Group1 376  441  699  14 0.964102564
## 409  0.182339667 0.81766033 zero Group1 376  440  700  14 0.964102564
## 6    0.181727067 0.81827293 zero Group1 376  439  701  14 0.964102564
## 415  0.181652097 0.81834790 zero Group1 376  438  702  14 0.964102564
## 953  0.180973064 0.81902694 zero Group1 376  437  703  14 0.964102564
## 307  0.180099733 0.81990027 zero Group1 376  436  704  14 0.964102564
## 406  0.178829646 0.82117035 zero Group1 376  435  705  14 0.964102564
## 1364 0.178602273 0.82139773 zero Group1 376  434  706  14 0.964102564
## 419  0.178451240 0.82154876 zero Group1 376  433  707  14 0.964102564
## 108  0.178425475 0.82157452 zero Group1 376  432  708  14 0.964102564
## 405  0.178224196 0.82177580 zero Group1 376  431  709  14 0.964102564
## 132  0.178053575 0.82194643 zero Group1 376  430  710  14 0.964102564
## 445  0.177940579 0.82205942 zero Group1 376  429  711  14 0.964102564
## 7    0.175905978 0.82409402 zero Group1 376  428  712  14 0.964102564
## 412  0.175417718 0.82458228 zero Group1 376  427  713  14 0.964102564
## 1290 0.174902899 0.82509710 zero Group1 376  426  714  14 0.964102564
## 1367 0.174446064 0.82555394 zero Group1 376  425  715  14 0.964102564
## 947  0.173650842 0.82634916 zero Group1 376  424  716  14 0.964102564
## 312  0.173117173 0.82688283 zero Group1 376  423  717  14 0.964102564
## 994  0.171661029 0.82833897 zero Group1 376  422  718  14 0.964102564
## 936  0.171243051 0.82875695 zero Group1 376  421  719  14 0.964102564
## 19   0.170091494 0.82990851 zero Group1 376  420  720  14 0.964102564
## 1362 0.169728246 0.83027175 zero Group1 376  419  721  14 0.964102564
## 900  0.169537121 0.83046288 zero Group1 376  418  722  14 0.964102564
## 952  0.168884090 0.83111591 zero Group1 376  417  723  14 0.964102564
## 726  0.168651936 0.83134806 zero Group1 376  416  724  14 0.964102564
## 1361 0.168417149 0.83158285 zero Group1 376  415  725  14 0.964102564
## 824  0.168025059 0.83197494 zero Group1 376  414  726  14 0.964102564
## 417  0.167682409 0.83231759 zero Group1 376  413  727  14 0.964102564
## 444  0.166614748 0.83338525 zero Group1 376  412  728  14 0.964102564
## 948  0.165285112 0.83471489 zero Group1 376  411  729  14 0.964102564
## 314  0.164543971 0.83545603 zero Group1 376  410  730  14 0.964102564
## 1201 0.164351615 0.83564838  one Group1 377  410  730  13 0.966666667
## 500  0.164166802 0.83583320 zero Group1 377  409  731  13 0.966666667
## 305  0.164143802 0.83585620 zero Group1 377  408  732  13 0.966666667
## 736  0.162230009 0.83776999 zero Group1 377  407  733  13 0.966666667
## 1286 0.161866990 0.83813301 zero Group1 377  406  734  13 0.966666667
## 446  0.160181324 0.83981868 zero Group1 377  405  735  13 0.966666667
## 193  0.159990493 0.84000951 zero Group1 377  404  736  13 0.966666667
## 663  0.159777824 0.84022218 zero Group1 377  403  737  13 0.966666667
## 1526 0.159614711 0.84038529 zero Group1 377  402  738  13 0.966666667
## 1452 0.159258386 0.84074161 zero Group1 377  401  739  13 0.966666667
## 1289 0.158966649 0.84103335 zero Group1 377  400  740  13 0.966666667
## 1291 0.158757989 0.84124201 zero Group1 377  399  741  13 0.966666667
## 1203 0.158675408 0.84132459 zero Group1 377  398  742  13 0.966666667
## 629  0.158647913 0.84135209 zero Group1 377  397  743  13 0.966666667
## 733  0.157761153 0.84223885 zero Group1 377  396  744  13 0.966666667
## 914  0.156936127 0.84306387 zero Group1 377  395  745  13 0.966666667
## 968  0.156539917 0.84346008 zero Group1 377  394  746  13 0.966666667
## 617  0.156257491 0.84374251 zero Group1 377  393  747  13 0.966666667
## 1    0.156116512 0.84388349 zero Group1 377  392  748  13 0.966666667
## 691  0.155899996 0.84410000 zero Group1 377  391  749  13 0.966666667
## 302  0.155554981 0.84444502 zero Group1 377  390  750  13 0.966666667
## 246  0.155102388 0.84489761 zero Group1 377  389  751  13 0.966666667
## 330  0.155027723 0.84497228  one Group1 378  389  751  12 0.969230769
## 206  0.155019657 0.84498034 zero Group1 378  388  752  12 0.969230769
## 381  0.154379788 0.84562021  one Group1 379  388  752  11 0.971794872
## 1202 0.154199383 0.84580062 zero Group1 379  387  753  11 0.971794872
## 384  0.154077150 0.84592285  one Group1 380  387  753  10 0.974358974
## 755  0.153953662 0.84604634 zero Group1 380  386  754  10 0.974358974
## 712  0.153724205 0.84627579 zero Group1 380  385  755  10 0.974358974
## 1222 0.153037188 0.84696281 zero Group1 380  384  756  10 0.974358974
## 737  0.152172933 0.84782707 zero Group1 380  383  757  10 0.974358974
## 762  0.151325298 0.84867470 zero Group1 380  382  758  10 0.974358974
## 292  0.151028790 0.84897121 zero Group1 380  381  759  10 0.974358974
## 684  0.151017645 0.84898236 zero Group1 380  380  760  10 0.974358974
## 972  0.150623164 0.84937684 zero Group1 380  379  761  10 0.974358974
## 537  0.150549994 0.84945001 zero Group1 380  378  762  10 0.974358974
## 535  0.150290475 0.84970952 zero Group1 380  377  763  10 0.974358974
## 828  0.149987968 0.85001203 zero Group1 380  376  764  10 0.974358974
## 1288 0.149734705 0.85026529 zero Group1 380  375  765  10 0.974358974
## 825  0.149640176 0.85035982 zero Group1 380  374  766  10 0.974358974
## 1253 0.148527112 0.85147289 zero Group1 380  373  767  10 0.974358974
## 454  0.146963276 0.85303672 zero Group1 380  372  768  10 0.974358974
## 920  0.146715859 0.85328414 zero Group1 380  371  769  10 0.974358974
## 1153 0.146343912 0.85365609 zero Group1 380  370  770  10 0.974358974
## 1254 0.146324390 0.85367561 zero Group1 380  369  771  10 0.974358974
## 1001 0.146278295 0.85372170 zero Group1 380  368  772  10 0.974358974
## 257  0.144726751 0.85527325  one Group1 381  368  772   9 0.976923077
## 351  0.144240117 0.85575988 zero Group1 381  367  773   9 0.976923077
## 1128 0.143924810 0.85607519 zero Group1 381  366  774   9 0.976923077
## 105  0.143139912 0.85686009 zero Group1 381  365  775   9 0.976923077
## 620  0.143073372 0.85692663 zero Group1 381  364  776   9 0.976923077
## 541  0.142914805 0.85708519 zero Group1 381  363  777   9 0.976923077
## 1183 0.142864585 0.85713541 zero Group1 381  362  778   9 0.976923077
## 1453 0.142779069 0.85722093 zero Group1 381  361  779   9 0.976923077
## 1177 0.142734213 0.85726579 zero Group1 381  360  780   9 0.976923077
## 630  0.142436475 0.85756353 zero Group1 381  359  781   9 0.976923077
## 1515 0.141917419 0.85808258 zero Group1 381  358  782   9 0.976923077
## 249  0.141836915 0.85816309 zero Group1 381  357  783   9 0.976923077
## 47   0.141313689 0.85868631 zero Group1 381  356  784   9 0.976923077
## 1176 0.141304363 0.85869564 zero Group1 381  355  785   9 0.976923077
## 1219 0.140085522 0.85991448 zero Group1 381  354  786   9 0.976923077
## 23   0.139684818 0.86031518  one Group1 382  354  786   8 0.979487179
## 115  0.139574536 0.86042546 zero Group1 382  353  787   8 0.979487179
## 1301 0.139359919 0.86064008 zero Group1 382  352  788   8 0.979487179
## 773  0.139256680 0.86074332 zero Group1 382  351  789   8 0.979487179
## 1244 0.139168186 0.86083181 zero Group1 382  350  790   8 0.979487179
## 1307 0.138841526 0.86115847 zero Group1 382  349  791   8 0.979487179
## 915  0.138656628 0.86134337 zero Group1 382  348  792   8 0.979487179
## 1327 0.138509380 0.86149062 zero Group1 382  347  793   8 0.979487179
## 81   0.138371303 0.86162870  one Group1 383  347  793   7 0.982051282
## 1371 0.137957973 0.86204203 zero Group1 383  346  794   7 0.982051282
## 823  0.137294231 0.86270577 zero Group1 383  345  795   7 0.982051282
## 207  0.137154501 0.86284550 zero Group1 383  344  796   7 0.982051282
## 303  0.137028341 0.86297166 zero Group1 383  343  797   7 0.982051282
## 251  0.136947435 0.86305256 zero Group1 383  342  798   7 0.982051282
## 355  0.136257804 0.86374220 zero Group1 383  341  799   7 0.982051282
## 1324 0.136245270 0.86375473 zero Group1 383  340  800   7 0.982051282
## 621  0.136178909 0.86382109 zero Group1 383  339  801   7 0.982051282
## 1524 0.136125468 0.86387453 zero Group1 383  338  802   7 0.982051282
## 464  0.135338018 0.86466198 zero Group1 383  337  803   7 0.982051282
## 965  0.134666282 0.86533372 zero Group1 383  336  804   7 0.982051282
## 1100 0.133978819 0.86602118 zero Group1 383  335  805   7 0.982051282
## 1057 0.133055364 0.86694464 zero Group1 383  334  806   7 0.982051282
## 1444 0.132889884 0.86711012 zero Group1 383  333  807   7 0.982051282
## 1111 0.132679558 0.86732044 zero Group1 383  332  808   7 0.982051282
## 1211 0.131092190 0.86890781 zero Group1 383  331  809   7 0.982051282
## 826  0.131089745 0.86891025 zero Group1 383  330  810   7 0.982051282
## 1528 0.130727205 0.86927280 zero Group1 383  329  811   7 0.982051282
## 1102 0.130368361 0.86963164 zero Group1 383  328  812   7 0.982051282
## 280  0.129998952 0.87000105  one Group1 384  328  812   6 0.984615385
## 113  0.129114299 0.87088570 zero Group1 384  327  813   6 0.984615385
## 508  0.128170437 0.87182956 zero Group1 384  326  814   6 0.984615385
## 639  0.128157048 0.87184295 zero Group1 384  325  815   6 0.984615385
## 1148 0.127900829 0.87209917 zero Group1 384  324  816   6 0.984615385
## 1484 0.127406854 0.87259315 zero Group1 384  323  817   6 0.984615385
## 1035 0.126479792 0.87352021 zero Group1 384  322  818   6 0.984615385
## 1138 0.126434908 0.87356509 zero Group1 384  321  819   6 0.984615385
## 1004 0.125902903 0.87409710 zero Group1 384  320  820   6 0.984615385
## 1139 0.125142741 0.87485726 zero Group1 384  319  821   6 0.984615385
## 1209 0.125118102 0.87488190 zero Group1 384  318  822   6 0.984615385
## 1401 0.124170503 0.87582950 zero Group1 384  317  823   6 0.984615385
## 1473 0.124081082 0.87591892 zero Group1 384  316  824   6 0.984615385
## 1434 0.123277773 0.87672223 zero Group1 384  315  825   6 0.984615385
## 1073 0.122957677 0.87704232 zero Group1 384  314  826   6 0.984615385
## 1338 0.122914876 0.87708512 zero Group1 384  313  827   6 0.984615385
## 1146 0.122270382 0.87772962 zero Group1 384  312  828   6 0.984615385
## 304  0.122268644 0.87773136 zero Group1 384  311  829   6 0.984615385
## 696  0.121970804 0.87802920 zero Group1 384  310  830   6 0.984615385
## 1308 0.121483379 0.87851662 zero Group1 384  309  831   6 0.984615385
## 1518 0.121005663 0.87899434 zero Group1 384  308  832   6 0.984615385
## 730  0.119650968 0.88034903 zero Group1 384  307  833   6 0.984615385
## 758  0.119190208 0.88080979 zero Group1 384  306  834   6 0.984615385
## 1229 0.118346062 0.88165394 zero Group1 384  305  835   6 0.984615385
## 492  0.118140219 0.88185978 zero Group1 384  304  836   6 0.984615385
## 716  0.117743650 0.88225635 zero Group1 384  303  837   6 0.984615385
## 1435 0.116735180 0.88326482 zero Group1 384  302  838   6 0.984615385
## 106  0.116681909 0.88331809 zero Group1 384  301  839   6 0.984615385
## 659  0.115837746 0.88416225 zero Group1 384  300  840   6 0.984615385
## 1280 0.115281883 0.88471812 zero Group1 384  299  841   6 0.984615385
## 799  0.115105131 0.88489487 zero Group1 384  298  842   6 0.984615385
## 989  0.114797327 0.88520267 zero Group1 384  297  843   6 0.984615385
## 112  0.114765749 0.88523425 zero Group1 384  296  844   6 0.984615385
## 1310 0.113680223 0.88631978 zero Group1 384  295  845   6 0.984615385
## 501  0.113005580 0.88699442 zero Group1 384  294  846   6 0.984615385
## 1234 0.112680241 0.88731976 zero Group1 384  293  847   6 0.984615385
## 877  0.112589359 0.88741064 zero Group1 384  292  848   6 0.984615385
## 221  0.111051803 0.88894820  one Group1 385  292  848   5 0.987179487
## 1486 0.110507221 0.88949278 zero Group1 385  291  849   5 0.987179487
## 291  0.110035732 0.88996427 zero Group1 385  290  850   5 0.987179487
## 1340 0.109736157 0.89026384 zero Group1 385  289  851   5 0.987179487
## 809  0.109508697 0.89049130 zero Group1 385  288  852   5 0.987179487
## 1007 0.109459373 0.89054063 zero Group1 385  287  853   5 0.987179487
## 1216 0.109412464 0.89058754 zero Group1 385  286  854   5 0.987179487
## 466  0.109322426 0.89067757 zero Group1 385  285  855   5 0.987179487
## 840  0.109165358 0.89083464 zero Group1 385  284  856   5 0.987179487
## 1488 0.108979508 0.89102049 zero Group1 385  283  857   5 0.987179487
## 1037 0.108330313 0.89166969 zero Group1 385  282  858   5 0.987179487
## 519  0.108211647 0.89178835 zero Group1 385  281  859   5 0.987179487
## 1275 0.107921480 0.89207852 zero Group1 385  280  860   5 0.987179487
## 1432 0.107544034 0.89245597 zero Group1 385  279  861   5 0.987179487
## 606  0.107518793 0.89248121 zero Group1 385  278  862   5 0.987179487
## 800  0.107128315 0.89287168 zero Group1 385  277  863   5 0.987179487
## 1303 0.106988584 0.89301142 zero Group1 385  276  864   5 0.987179487
## 918  0.106921226 0.89307877 zero Group1 385  275  865   5 0.987179487
## 1436 0.106819825 0.89318018 zero Group1 385  274  866   5 0.987179487
## 875  0.106486693 0.89351331 zero Group1 385  273  867   5 0.987179487
## 54   0.106460547 0.89353945 zero Group1 385  272  868   5 0.987179487
## 116  0.105165565 0.89483443 zero Group1 385  271  869   5 0.987179487
## 586  0.105020377 0.89497962 zero Group1 385  270  870   5 0.987179487
## 493  0.103981088 0.89601891 zero Group1 385  269  871   5 0.987179487
## 607  0.103905296 0.89609470 zero Group1 385  268  872   5 0.987179487
## 759  0.103761982 0.89623802 zero Group1 385  267  873   5 0.987179487
## 295  0.102928182 0.89707182 zero Group1 385  266  874   5 0.987179487
## 104  0.102421803 0.89757820 zero Group1 385  265  875   5 0.987179487
## 1179 0.101934160 0.89806584 zero Group1 385  264  876   5 0.987179487
## 589  0.101451561 0.89854844 zero Group1 385  263  877   5 0.987179487
## 1346 0.101068746 0.89893125 zero Group1 385  262  878   5 0.987179487
## 174  0.100760430 0.89923957 zero Group1 385  261  879   5 0.987179487
## 549  0.100688539 0.89931146 zero Group1 385  260  880   5 0.987179487
## 44   0.100521936 0.89947806 zero Group1 385  259  881   5 0.987179487
## 1233 0.100269981 0.89973002 zero Group1 385  258  882   5 0.987179487
## 605  0.099940301 0.90005970 zero Group1 385  257  883   5 0.987179487
## 465  0.099555220 0.90044478 zero Group1 385  256  884   5 0.987179487
## 913  0.098477796 0.90152220 zero Group1 385  255  885   5 0.987179487
## 1083 0.098304652 0.90169535  one Group1 386  255  885   4 0.989743590
## 536  0.097356548 0.90264345 zero Group1 386  254  886   4 0.989743590
## 1409 0.095240702 0.90475930 zero Group1 386  253  887   4 0.989743590
## 309  0.095029017 0.90497098 zero Group1 386  252  888   4 0.989743590
## 1416 0.094897149 0.90510285 zero Group1 386  251  889   4 0.989743590
## 1415 0.094379232 0.90562077 zero Group1 386  250  890   4 0.989743590
## 1077 0.094254730 0.90574527 zero Group1 386  249  891   4 0.989743590
## 143  0.094010957 0.90598904  one Group1 387  249  891   3 0.992307692
## 166  0.093802551 0.90619745 zero Group1 387  248  892   3 0.992307692
## 1470 0.093390666 0.90660933 zero Group1 387  247  893   3 0.992307692
## 1381 0.093389152 0.90661085 zero Group1 387  246  894   3 0.992307692
## 1061 0.093332084 0.90666792 zero Group1 387  245  895   3 0.992307692
## 1231 0.092901385 0.90709861 zero Group1 387  244  896   3 0.992307692
## 880  0.090468366 0.90953163 zero Group1 387  243  897   3 0.992307692
## 1417 0.090323151 0.90967685 zero Group1 387  242  898   3 0.992307692
## 1378 0.090155994 0.90984401 zero Group1 387  241  899   3 0.992307692
## 194  0.089498502 0.91050150 zero Group1 387  240  900   3 0.992307692
## 1344 0.089357658 0.91064234 zero Group1 387  239  901   3 0.992307692
## 327  0.089095941 0.91090406 zero Group1 387  238  902   3 0.992307692
## 551  0.088493947 0.91150605 zero Group1 387  237  903   3 0.992307692
## 1075 0.088246066 0.91175393 zero Group1 387  236  904   3 0.992307692
## 560  0.088062494 0.91193751 zero Group1 387  235  905   3 0.992307692
## 645  0.087996978 0.91200302 zero Group1 387  234  906   3 0.992307692
## 1080 0.087127842 0.91287216 zero Group1 387  233  907   3 0.992307692
## 1413 0.086882999 0.91311700 zero Group1 387  232  908   3 0.992307692
## 1348 0.086832083 0.91316792 zero Group1 387  231  909   3 0.992307692
## 1279 0.086073764 0.91392624 zero Group1 387  230  910   3 0.992307692
## 881  0.084897113 0.91510289 zero Group1 387  229  911   3 0.992307692
## 1490 0.084492148 0.91550785 zero Group1 387  228  912   3 0.992307692
## 150  0.084353580 0.91564642 zero Group1 387  227  913   3 0.992307692
## 1412 0.084139912 0.91586009 zero Group1 387  226  914   3 0.992307692
## 805  0.083573001 0.91642700 zero Group1 387  225  915   3 0.992307692
## 167  0.083465475 0.91653452 zero Group1 387  224  916   3 0.992307692
## 935  0.082864186 0.91713581 zero Group1 387  223  917   3 0.992307692
## 593  0.082641058 0.91735894 zero Group1 387  222  918   3 0.992307692
## 1410 0.082454196 0.91754580 zero Group1 387  221  919   3 0.992307692
## 79   0.082305446 0.91769455 zero Group1 387  220  920   3 0.992307692
## 1109 0.082144863 0.91785514 zero Group1 387  219  921   3 0.992307692
## 199  0.081865040 0.91813496 zero Group1 387  218  922   3 0.992307692
## 1414 0.081377049 0.91862295 zero Group1 387  217  923   3 0.992307692
## 646  0.081137517 0.91886248 zero Group1 387  216  924   3 0.992307692
## 577  0.080969955 0.91903004 zero Group1 387  215  925   3 0.992307692
## 357  0.080530111 0.91946989 zero Group1 387  214  926   3 0.992307692
## 1328 0.080292221 0.91970778 zero Group1 387  213  927   3 0.992307692
## 628  0.079630209 0.92036979 zero Group1 387  212  928   3 0.992307692
## 756  0.079127843 0.92087216 zero Group1 387  211  929   3 0.992307692
## 806  0.078909975 0.92109003 zero Group1 387  210  930   3 0.992307692
## 463  0.078837931 0.92116207 zero Group1 387  209  931   3 0.992307692
## 1108 0.077320061 0.92267994 zero Group1 387  208  932   3 0.992307692
## 358  0.076738220 0.92326178 zero Group1 387  207  933   3 0.992307692
## 552  0.076713224 0.92328678 zero Group1 387  206  934   3 0.992307692
## 461  0.076648704 0.92335130 zero Group1 387  205  935   3 0.992307692
## 359  0.076605893 0.92339411 zero Group1 387  204  936   3 0.992307692
## 1493 0.076250522 0.92374948 zero Group1 387  203  937   3 0.992307692
## 361  0.076242217 0.92375778 zero Group1 387  202  938   3 0.992307692
## 1323 0.076225211 0.92377479 zero Group1 387  201  939   3 0.992307692
## 1326 0.076212623 0.92378738 zero Group1 387  200  940   3 0.992307692
## 1345 0.075831784 0.92416822 zero Group1 387  199  941   3 0.992307692
## 499  0.075152002 0.92484800 zero Group1 387  198  942   3 0.992307692
## 627  0.074867417 0.92513258 zero Group1 387  197  943   3 0.992307692
## 356  0.074248970 0.92575103 zero Group1 387  196  944   3 0.992307692
## 822  0.074092319 0.92590768 zero Group1 387  195  945   3 0.992307692
## 899  0.074027705 0.92597230 zero Group1 387  194  946   3 0.992307692
## 644  0.073143405 0.92685659 zero Group1 387  193  947   3 0.992307692
## 360  0.073006389 0.92699361 zero Group1 387  192  948   3 0.992307692
## 852  0.072593249 0.92740675 zero Group1 387  191  949   3 0.992307692
## 754  0.072353421 0.92764658 zero Group1 387  190  950   3 0.992307692
## 1321 0.071692598 0.92830740 zero Group1 387  189  951   3 0.992307692
## 720  0.071560132 0.92843987 zero Group1 387  188  952   3 0.992307692
## 165  0.071289704 0.92871030 zero Group1 387  187  953   3 0.992307692
## 717  0.070901292 0.92909871 zero Group1 387  186  954   3 0.992307692
## 642  0.070573487 0.92942651 zero Group1 387  185  955   3 0.992307692
## 387  0.069672805 0.93032719  one Group1 388  185  955   2 0.994871795
## 350  0.068239455 0.93176055 zero Group1 388  184  956   2 0.994871795
## 1322 0.067482084 0.93251792 zero Group1 388  183  957   2 0.994871795
## 1143 0.067301558 0.93269844 zero Group1 388  182  958   2 0.994871795
## 1145 0.066662394 0.93333761 zero Group1 388  181  959   2 0.994871795
## 970  0.066555830 0.93344417 zero Group1 388  180  960   2 0.994871795
## 1447 0.065963639 0.93403636 zero Group1 388  179  961   2 0.994871795
## 512  0.065796322 0.93420368 zero Group1 388  178  962   2 0.994871795
## 1142 0.065729102 0.93427090 zero Group1 388  177  963   2 0.994871795
## 876  0.065636578 0.93436342 zero Group1 388  176  964   2 0.994871795
## 1125 0.065567280 0.93443272 zero Group1 388  175  965   2 0.994871795
## 636  0.065484109 0.93451589 zero Group1 388  174  966   2 0.994871795
## 245  0.065127391 0.93487261 zero Group1 388  173  967   2 0.994871795
## 772  0.064568406 0.93543159 zero Group1 388  172  968   2 0.994871795
## 597  0.064275532 0.93572447 zero Group1 388  171  969   2 0.994871795
## 1053 0.064184550 0.93581545 zero Group1 388  170  970   2 0.994871795
## 1121 0.063812819 0.93618718 zero Group1 388  169  971   2 0.994871795
## 1072 0.063589763 0.93641024 zero Group1 388  168  972   2 0.994871795
## 1074 0.063426230 0.93657377 zero Group1 388  167  973   2 0.994871795
## 664  0.063258577 0.93674142 zero Group1 388  166  974   2 0.994871795
## 1380 0.063048536 0.93695146 zero Group1 388  165  975   2 0.994871795
## 559  0.062824139 0.93717586 zero Group1 388  164  976   2 0.994871795
## 718  0.062811761 0.93718824 zero Group1 388  163  977   2 0.994871795
## 70   0.062543066 0.93745693 zero Group1 388  162  978   2 0.994871795
## 604  0.062500604 0.93749940 zero Group1 388  161  979   2 0.994871795
## 539  0.061366645 0.93863336 zero Group1 388  160  980   2 0.994871795
## 316  0.060935572 0.93906443 zero Group1 388  159  981   2 0.994871795
## 705  0.060877638 0.93912236 zero Group1 388  158  982   2 0.994871795
## 966  0.060684992 0.93931501 zero Group1 388  157  983   2 0.994871795
## 588  0.060667094 0.93933291 zero Group1 388  156  984   2 0.994871795
## 1230 0.060389211 0.93961079 zero Group1 388  155  985   2 0.994871795
## 917  0.060319259 0.93968074 zero Group1 388  154  986   2 0.994871795
## 1165 0.060136697 0.93986330 zero Group1 388  153  987   2 0.994871795
## 529  0.059344096 0.94065590 zero Group1 388  152  988   2 0.994871795
## 50   0.059218294 0.94078171 zero Group1 388  151  989   2 0.994871795
## 798  0.059024890 0.94097511 zero Group1 388  150  990   2 0.994871795
## 557  0.058843787 0.94115621 zero Group1 388  149  991   2 0.994871795
## 941  0.058841794 0.94115821 zero Group1 388  148  992   2 0.994871795
## 1156 0.058754650 0.94124535 zero Group1 388  147  993   2 0.994871795
## 1379 0.058709891 0.94129011 zero Group1 388  146  994   2 0.994871795
## 739  0.058237506 0.94176249 zero Group1 388  145  995   2 0.994871795
## 1403 0.057347434 0.94265257 zero Group1 388  144  996   2 0.994871795
## 1147 0.056068328 0.94393167 zero Group1 388  143  997   2 0.994871795
## 438  0.055887736 0.94411226 zero Group1 388  142  998   2 0.994871795
## 619  0.054952609 0.94504739 zero Group1 388  141  999   2 0.994871795
## 1166 0.054461717 0.94553828 zero Group1 388  140 1000   2 0.994871795
## 843  0.054443528 0.94555647 zero Group1 388  139 1001   2 0.994871795
## 129  0.054331358 0.94566864 zero Group1 388  138 1002   2 0.994871795
## 929  0.054159027 0.94584097 zero Group1 388  137 1003   2 0.994871795
## 590  0.054103606 0.94589639 zero Group1 388  136 1004   2 0.994871795
## 719  0.053895464 0.94610454 zero Group1 388  135 1005   2 0.994871795
## 1149 0.053785976 0.94621402 zero Group1 388  134 1006   2 0.994871795
## 1339 0.053749361 0.94625064 zero Group1 388  133 1007   2 0.994871795
## 667  0.053695634 0.94630437 zero Group1 388  132 1008   2 0.994871795
## 658  0.053276482 0.94672352 zero Group1 388  131 1009   2 0.994871795
## 183  0.052778239 0.94722176 zero Group1 388  130 1010   2 0.994871795
## 884  0.052738133 0.94726187  one Group1 389  130 1010   1 0.997435897
## 841  0.052328730 0.94767127 zero Group1 389  129 1011   1 0.997435897
## 1523 0.051787882 0.94821212 zero Group1 389  128 1012   1 0.997435897
## 1525 0.051655400 0.94834460 zero Group1 389  127 1013   1 0.997435897
## 1455 0.050958136 0.94904186 zero Group1 389  126 1014   1 0.997435897
## 1465 0.050949224 0.94905078 zero Group1 389  125 1015   1 0.997435897
## 971  0.050708924 0.94929108 zero Group1 389  124 1016   1 0.997435897
## 665  0.050307656 0.94969234 zero Group1 389  123 1017   1 0.997435897
## 558  0.050148039 0.94985196 zero Group1 389  122 1018   1 0.997435897
## 1489 0.050068789 0.94993121 zero Group1 389  121 1019   1 0.997435897
## 743  0.049491262 0.95050874 zero Group1 389  120 1020   1 0.997435897
## 699  0.048883455 0.95111655 zero Group1 389  119 1021   1 0.997435897
## 1385 0.048785963 0.95121404 zero Group1 389  118 1022   1 0.997435897
## 813  0.048694924 0.95130508 zero Group1 389  117 1023   1 0.997435897
## 1218 0.048479871 0.95152013 zero Group1 389  116 1024   1 0.997435897
## 1433 0.048281560 0.95171844 zero Group1 389  115 1025   1 0.997435897
## 1038 0.047945345 0.95205465 zero Group1 389  114 1026   1 0.997435897
## 707  0.047585123 0.95241488 zero Group1 389  113 1027   1 0.997435897
## 4    0.047461157 0.95253884 zero Group1 389  112 1028   1 0.997435897
## 844  0.047448575 0.95255142 zero Group1 389  111 1029   1 0.997435897
## 1213 0.047088766 0.95291123 zero Group1 389  110 1030   1 0.997435897
## 1217 0.046822085 0.95317792 zero Group1 389  109 1031   1 0.997435897
## 819  0.046015423 0.95398458 zero Group1 389  108 1032   1 0.997435897
## 1446 0.045833709 0.95416629 zero Group1 389  107 1033   1 0.997435897
## 1170 0.045541440 0.95445856 zero Group1 389  106 1034   1 0.997435897
## 932  0.045525602 0.95447440 zero Group1 389  105 1035   1 0.997435897
## 1274 0.045519568 0.95448043 zero Group1 389  104 1036   1 0.997435897
## 505  0.045395689 0.95460431 zero Group1 389  103 1037   1 0.997435897
## 776  0.043703160 0.95629684  one Group1 390  103 1037   0 1.000000000
## 1043 0.043363415 0.95663658 zero Group1 390  102 1038   0 1.000000000
## 1169 0.043259023 0.95674098 zero Group1 390  101 1039   0 1.000000000
## 1003 0.043229202 0.95677080 zero Group1 390  100 1040   0 1.000000000
## 1386 0.042918988 0.95708101 zero Group1 390   99 1041   0 1.000000000
## 701  0.042344749 0.95765525 zero Group1 390   98 1042   0 1.000000000
## 443  0.041879944 0.95812006 zero Group1 390   97 1043   0 1.000000000
## 1251 0.041208850 0.95879115 zero Group1 390   96 1044   0 1.000000000
## 698  0.040762768 0.95923723 zero Group1 390   95 1045   0 1.000000000
## 468  0.040552314 0.95944769 zero Group1 390   94 1046   0 1.000000000
## 1522 0.040209267 0.95979073 zero Group1 390   93 1047   0 1.000000000
## 695  0.040110902 0.95988910 zero Group1 390   92 1048   0 1.000000000
## 1516 0.040098520 0.95990148 zero Group1 390   91 1049   0 1.000000000
## 767  0.040083435 0.95991657 zero Group1 390   90 1050   0 1.000000000
## 460  0.039968557 0.96003144 zero Group1 390   89 1051   0 1.000000000
## 1519 0.039224058 0.96077594 zero Group1 390   88 1052   0 1.000000000
## 1036 0.039023731 0.96097627 zero Group1 390   87 1053   0 1.000000000
## 1210 0.038976705 0.96102330 zero Group1 390   86 1054   0 1.000000000
## 1312 0.038588940 0.96141106 zero Group1 390   85 1055   0 1.000000000
## 1164 0.037950385 0.96204961 zero Group1 390   84 1056   0 1.000000000
## 40   0.037156819 0.96284318 zero Group1 390   83 1057   0 1.000000000
## 638  0.037116339 0.96288366 zero Group1 390   82 1058   0 1.000000000
## 1250 0.036848626 0.96315137 zero Group1 390   81 1059   0 1.000000000
## 1257 0.036640005 0.96336000 zero Group1 390   80 1060   0 1.000000000
## 205  0.036628481 0.96337152 zero Group1 390   79 1061   0 1.000000000
## 1000 0.036242066 0.96375793 zero Group1 390   78 1062   0 1.000000000
## 416  0.036032187 0.96396781 zero Group1 390   77 1063   0 1.000000000
## 1167 0.035897830 0.96410217 zero Group1 390   76 1064   0 1.000000000
## 1185 0.035463228 0.96453677 zero Group1 390   75 1065   0 1.000000000
## 503  0.034584982 0.96541502 zero Group1 390   74 1066   0 1.000000000
## 1256 0.034548874 0.96545113 zero Group1 390   73 1067   0 1.000000000
## 1184 0.034271184 0.96572882 zero Group1 390   72 1068   0 1.000000000
## 1249 0.032871383 0.96712862 zero Group1 390   71 1069   0 1.000000000
## 594  0.032794340 0.96720566 zero Group1 390   70 1070   0 1.000000000
## 1163 0.032790001 0.96721000 zero Group1 390   69 1071   0 1.000000000
## 1220 0.032608312 0.96739169 zero Group1 390   68 1072   0 1.000000000
## 697  0.032005431 0.96799457 zero Group1 390   67 1073   0 1.000000000
## 293  0.031814184 0.96818582 zero Group1 390   66 1074   0 1.000000000
## 1006 0.031226987 0.96877301 zero Group1 390   65 1075   0 1.000000000
## 561  0.031178556 0.96882144 zero Group1 390   64 1076   0 1.000000000
## 587  0.031006833 0.96899317 zero Group1 390   63 1077   0 1.000000000
## 731  0.030925172 0.96907483 zero Group1 390   62 1078   0 1.000000000
## 808  0.030508340 0.96949166 zero Group1 390   61 1079   0 1.000000000
## 1277 0.030277288 0.96972271 zero Group1 390   60 1080   0 1.000000000
## 97   0.030108442 0.96989156 zero Group1 390   59 1081   0 1.000000000
## 1461 0.027718873 0.97228113 zero Group1 390   58 1082   0 1.000000000
## 641  0.027529153 0.97247085 zero Group1 390   57 1083   0 1.000000000
## 1188 0.026718944 0.97328106 zero Group1 390   56 1084   0 1.000000000
## 1454 0.026664927 0.97333507 zero Group1 390   55 1085   0 1.000000000
## 969  0.025009695 0.97499031 zero Group1 390   54 1086   0 1.000000000
## 1002 0.024205265 0.97579473 zero Group1 390   53 1087   0 1.000000000
## 1491 0.023999710 0.97600029 zero Group1 390   52 1088   0 1.000000000
## 1311 0.022514083 0.97748592 zero Group1 390   51 1089   0 1.000000000
## 1302 0.022396626 0.97760337 zero Group1 390   50 1090   0 1.000000000
## 883  0.022378106 0.97762189 zero Group1 390   49 1091   0 1.000000000
## 988  0.022134560 0.97786544 zero Group1 390   48 1092   0 1.000000000
## 1224 0.022027513 0.97797249 zero Group1 390   47 1093   0 1.000000000
## 1187 0.021700769 0.97829923 zero Group1 390   46 1094   0 1.000000000
## 735  0.021299013 0.97870099 zero Group1 390   45 1095   0 1.000000000
## 859  0.021095389 0.97890461 zero Group1 390   44 1096   0 1.000000000
## 1047 0.020865393 0.97913461 zero Group1 390   43 1097   0 1.000000000
## 905  0.019926187 0.98007381 zero Group1 390   42 1098   0 1.000000000
## 740  0.019684982 0.98031502 zero Group1 390   41 1099   0 1.000000000
## 1255 0.019655222 0.98034478 zero Group1 390   40 1100   0 1.000000000
## 634  0.019460810 0.98053919 zero Group1 390   39 1101   0 1.000000000
## 1384 0.019359606 0.98064039 zero Group1 390   38 1102   0 1.000000000
## 850  0.018810479 0.98118952 zero Group1 390   36 1104   0 1.000000000
## 878  0.018810479 0.98118952 zero Group1 390   36 1104   0 1.000000000
## 182  0.018365043 0.98163496 zero Group1 390   35 1105   0 1.000000000
## 1360 0.017926359 0.98207364 zero Group1 390   34 1106   0 1.000000000
## 1354 0.017917951 0.98208205 zero Group1 390   33 1107   0 1.000000000
## 1079 0.017761257 0.98223874 zero Group1 390   32 1108   0 1.000000000
## 301  0.017561945 0.98243805 zero Group1 390   31 1109   0 1.000000000
## 441  0.016082293 0.98391771 zero Group1 390   30 1110   0 1.000000000
## 1101 0.015873139 0.98412686 zero Group1 390   29 1111   0 1.000000000
## 729  0.015441243 0.98455876 zero Group1 390   28 1112   0 1.000000000
## 1325 0.015184251 0.98481575 zero Group1 390   27 1113   0 1.000000000
## 576  0.014731585 0.98526842 zero Group1 390   26 1114   0 1.000000000
## 766  0.014539070 0.98546093 zero Group1 390   25 1115   0 1.000000000
## 102  0.014428361 0.98557164 zero Group1 390   24 1116   0 1.000000000
## 57   0.014008931 0.98599107 zero Group1 390   23 1117   0 1.000000000
## 748  0.013966793 0.98603321 zero Group1 390   22 1118   0 1.000000000
## 865  0.013025604 0.98697440 zero Group1 390   21 1119   0 1.000000000
## 13   0.012617261 0.98738274 zero Group1 390   20 1120   0 1.000000000
## 1081 0.012601187 0.98739881 zero Group1 390   19 1121   0 1.000000000
## 306  0.011824303 0.98817570 zero Group1 390   18 1122   0 1.000000000
## 1431 0.011295253 0.98870475 zero Group1 390   17 1123   0 1.000000000
## 916  0.010868703 0.98913130 zero Group1 390   16 1124   0 1.000000000
## 200  0.009965855 0.99003415 zero Group1 390   15 1125   0 1.000000000
## 1309 0.009957394 0.99004261 zero Group1 390   14 1126   0 1.000000000
## 35   0.008954036 0.99104596 zero Group1 390   13 1127   0 1.000000000
## 1418 0.008648647 0.99135135 zero Group1 390   12 1128   0 1.000000000
## 1019 0.008439383 0.99156062 zero Group1 390   11 1129   0 1.000000000
## 204  0.007267722 0.99273228 zero Group1 390   10 1130   0 1.000000000
## 1059 0.007006281 0.99299372 zero Group1 390    9 1131   0 1.000000000
## 857  0.005286523 0.99471348 zero Group1 390    8 1132   0 1.000000000
## 1285 0.004744478 0.99525552 zero Group1 390    7 1133   0 1.000000000
## 1168 0.004078460 0.99592154 zero Group1 390    6 1134   0 1.000000000
## 751  0.004071755 0.99592824 zero Group1 390    5 1135   0 1.000000000
## 774  0.003888898 0.99611110 zero Group1 390    4 1136   0 1.000000000
## 757  0.003775073 0.99622493 zero Group1 390    3 1137   0 1.000000000
## 746  0.003438692 0.99656131 zero Group1 390    2 1138   0 1.000000000
## 353  0.003430765 0.99656923 zero Group1 390    1 1139   0 1.000000000
## 362  0.003252513 0.99674749 zero Group1 390    0 1140   0 1.000000000
##             SPEC Informedness      PREC       NPV      MARK         F1
## 782  1.000000000  0.002564103 1.0000000 0.7455853 0.7455853 0.00511509
## 572  1.000000000  0.005128205 1.0000000 0.7460733 0.7460733 0.01020408
## 152  1.000000000  0.007692308 1.0000000 0.7465619 0.7465619 0.01526718
## 1193 1.000000000  0.010256410 1.0000000 0.7470511 0.7470511 0.02030457
## 284  1.000000000  0.012820513 1.0000000 0.7475410 0.7475410 0.02531646
## 983  1.000000000  0.015384615 1.0000000 0.7480315 0.7480315 0.03030303
## 335  1.000000000  0.017948718 1.0000000 0.7485227 0.7485227 0.03526448
## 891  1.000000000  0.020512821 1.0000000 0.7490145 0.7490145 0.04020101
## 673  1.000000000  0.023076923 1.0000000 0.7495069 0.7495069 0.04511278
## 325  1.000000000  0.025641026 1.0000000 0.7500000 0.7500000 0.05000000
## 812  0.999122807  0.024763833 0.9090909 0.7498354 0.6589263 0.04987531
## 260  0.999122807  0.027327935 0.9166667 0.7503294 0.6669960 0.05472637
## 122  0.999122807  0.029892038 0.9230769 0.7508240 0.6739009 0.05955335
## 724  0.998245614  0.029014845 0.8571429 0.7506596 0.6078025 0.05940594
## 648  0.997368421  0.028137652 0.8000000 0.7504950 0.5504950 0.05925926
## 216  0.997368421  0.030701754 0.8125000 0.7509908 0.5634908 0.06403941
## 568  0.997368421  0.033265857 0.8235294 0.7514871 0.5750165 0.06879607
## 723  0.996491228  0.032388664 0.7777778 0.7513228 0.5291005 0.06862745
## 89   0.996491228  0.034952767 0.7894737 0.7518200 0.5412937 0.07334963
## 1261 0.996491228  0.037516869 0.8000000 0.7523179 0.5523179 0.07804878
## 721  0.995614035  0.036639676 0.7619048 0.7521537 0.5140585 0.07785888
## 633  0.994736842  0.035762483 0.7272727 0.7519894 0.4792621 0.07766990
## 1459 0.993859649  0.034885290 0.6956522 0.7518248 0.4474770 0.07748184
## 158  0.993859649  0.037449393 0.7083333 0.7523240 0.4606574 0.08212560
## 978  0.993859649  0.040013495 0.7200000 0.7528239 0.4728239 0.08674699
## 365  0.993859649  0.042577598 0.7307692 0.7533245 0.4840937 0.09134615
## 367  0.993859649  0.045141700 0.7407407 0.7538257 0.4945664 0.09592326
## 270  0.993859649  0.047705803 0.7500000 0.7543276 0.5043276 0.10047847
## 271  0.993859649  0.050269906 0.7586207 0.7548301 0.5134508 0.10501193
## 1082 0.993859649  0.052834008 0.7666667 0.7553333 0.5220000 0.10952381
## 275  0.993859649  0.055398111 0.7741935 0.7558372 0.5300308 0.11401425
## 1267 0.993859649  0.057962213 0.7812500 0.7563418 0.5375918 0.11848341
## 347  0.993859649  0.060526316 0.7878788 0.7568470 0.5447258 0.12293144
## 85   0.993859649  0.063090418 0.7941176 0.7573529 0.5514706 0.12735849
## 241  0.993859649  0.065654521 0.8000000 0.7578595 0.5578595 0.13176471
## 345  0.993859649  0.068218623 0.8055556 0.7583668 0.5639224 0.13615023
## 336  0.993859649  0.070782726 0.8108108 0.7588747 0.5696856 0.14051522
## 455  0.992982456  0.069905533 0.7894737 0.7587131 0.5481868 0.14018692
## 332  0.992982456  0.072469636 0.7948718 0.7592220 0.5540938 0.14452214
## 237  0.992982456  0.075033738 0.8000000 0.7597315 0.5597315 0.14883721
## 372  0.992982456  0.077597841 0.8048780 0.7602418 0.5651198 0.15313225
## 210  0.992982456  0.080161943 0.8095238 0.7607527 0.5702765 0.15740741
## 578  0.992105263  0.079284750 0.7906977 0.7605918 0.5512895 0.15704388
## 259  0.992105263  0.081848853 0.7954545 0.7611036 0.5565582 0.16129032
## 1266 0.992105263  0.084412955 0.8000000 0.7616162 0.5616162 0.16551724
## 526  0.991228070  0.083535762 0.7826087 0.7614555 0.5440642 0.16513761
## 90   0.991228070  0.086099865 0.7872340 0.7619690 0.5492030 0.16933638
## 830  0.990350877  0.085222672 0.7708333 0.7618084 0.5326417 0.16894977
## 831  0.989473684  0.084345479 0.7551020 0.7616475 0.5167496 0.16856492
## 227  0.989473684  0.086909582 0.7600000 0.7621622 0.5221622 0.17272727
## 14   0.989473684  0.089473684 0.7647059 0.7626775 0.5273834 0.17687075
## 1192 0.989473684  0.092037787 0.7692308 0.7631935 0.5324243 0.18099548
## 1498 0.989473684  0.094601889 0.7735849 0.7637102 0.5372951 0.18510158
## 290  0.989473684  0.097165992 0.7777778 0.7642276 0.5420054 0.18918919
## 1497 0.989473684  0.099730094 0.7818182 0.7647458 0.5465639 0.19325843
## 780  0.989473684  0.102294197 0.7857143 0.7652646 0.5509789 0.19730942
## 88   0.989473684  0.104858300 0.7894737 0.7657841 0.5552578 0.20134228
## 1236 0.988596491  0.103981107 0.7758621 0.7656250 0.5414871 0.20089286
## 170  0.987719298  0.103103914 0.7627119 0.7654657 0.5281775 0.20044543
## 1237 0.986842105  0.102226721 0.7500000 0.7653061 0.5153061 0.20000000
## 430  0.986842105  0.104790823 0.7540984 0.7658271 0.5199255 0.20399113
## 131  0.986842105  0.107354926 0.7580645 0.7663488 0.5244133 0.20796460
## 431  0.986842105  0.109919028 0.7619048 0.7668712 0.5287759 0.21192053
## 43   0.985964912  0.109041835 0.7500000 0.7667121 0.5167121 0.21145374
## 428  0.985964912  0.111605938 0.7538462 0.7672355 0.5210816 0.21538462
## 1503 0.985964912  0.114170040 0.7575758 0.7677596 0.5253353 0.21929825
## 427  0.985964912  0.116734143 0.7611940 0.7682843 0.5294784 0.22319475
## 287  0.985964912  0.119298246 0.7647059 0.7688098 0.5335157 0.22707424
## 1502 0.985964912  0.121862348 0.7681159 0.7693361 0.5374520 0.23093682
## 1196 0.985964912  0.124426451 0.7714286 0.7698630 0.5412916 0.23478261
## 924  0.985087719  0.123549258 0.7605634 0.7697053 0.5302687 0.23427332
## 223  0.985087719  0.126113360 0.7638889 0.7702332 0.5341221 0.23809524
## 214  0.985087719  0.128677463 0.7671233 0.7707618 0.5378851 0.24190065
## 344  0.985087719  0.131241565 0.7702703 0.7712912 0.5415615 0.24568966
## 16   0.984210526  0.130364372 0.7600000 0.7711340 0.5311340 0.24516129
## 563  0.984210526  0.132928475 0.7631579 0.7716644 0.5348223 0.24892704
## 321  0.984210526  0.135492578 0.7662338 0.7721955 0.5384292 0.25267666
## 84   0.984210526  0.138056680 0.7692308 0.7727273 0.5419580 0.25641026
## 1438 0.983333333  0.137179487 0.7594937 0.7725706 0.5320643 0.25586354
## 86   0.983333333  0.139743590 0.7625000 0.7731034 0.5356034 0.25957447
## 283  0.983333333  0.142307692 0.7654321 0.7736370 0.5390691 0.26326964
## 191  0.983333333  0.144871795 0.7682927 0.7741713 0.5424640 0.26694915
## 334  0.983333333  0.147435897 0.7710843 0.7747063 0.5457906 0.27061311
## 429  0.983333333  0.150000000 0.7738095 0.7752420 0.5490516 0.27426160
## 1292 0.982456140  0.149122807 0.7647059 0.7750865 0.5397924 0.27368421
## 923  0.981578947  0.148245614 0.7558140 0.7749307 0.5307447 0.27310924
## 277  0.981578947  0.150809717 0.7586207 0.7754678 0.5340885 0.27672956
## 1259 0.981578947  0.153373819 0.7613636 0.7760055 0.5373692 0.28033473
## 982  0.981578947  0.155937922 0.7640449 0.7765441 0.5405890 0.28392484
## 211  0.981578947  0.158502024 0.7666667 0.7770833 0.5437500 0.28750000
## 60   0.981578947  0.161066127 0.7692308 0.7776233 0.5468541 0.29106029
## 742  0.980701754  0.160188934 0.7608696 0.7774687 0.5383383 0.29045643
## 83   0.980701754  0.162753036 0.7634409 0.7780097 0.5414506 0.29399586
## 231  0.980701754  0.165317139 0.7659574 0.7785515 0.5445090 0.29752066
## 396  0.980701754  0.167881242 0.7684211 0.7790941 0.5475151 0.30103093
## 147  0.980701754  0.170445344 0.7708333 0.7796374 0.5504707 0.30452675
## 1501 0.980701754  0.173009447 0.7731959 0.7801814 0.5533773 0.30800821
## 352  0.979824561  0.172132254 0.7653061 0.7800279 0.5453341 0.30737705
## 215  0.979824561  0.174696356 0.7676768 0.7805730 0.5482498 0.31083845
## 198  0.978947368  0.173819163 0.7600000 0.7804196 0.5404196 0.31020408
## 491  0.978070175  0.172941970 0.7524752 0.7802659 0.5327412 0.30957230
## 155  0.978070175  0.175506073 0.7549020 0.7808123 0.5357143 0.31300813
## 80   0.978070175  0.178070175 0.7572816 0.7813595 0.5386410 0.31643002
## 288  0.978070175  0.180634278 0.7596154 0.7819074 0.5415228 0.31983806
## 294  0.977192982  0.179757085 0.7523810 0.7817544 0.5341353 0.31919192
## 320  0.977192982  0.182321188 0.7547170 0.7823034 0.5370204 0.32258065
## 870  0.976315789  0.181443995 0.7476636 0.7821504 0.5298139 0.32193159
## 1065 0.975438596  0.180566802 0.7407407 0.7819972 0.5227379 0.32128514
## 889  0.975438596  0.183130904 0.7431193 0.7825475 0.5256668 0.32464930
## 1198 0.975438596  0.185695007 0.7454545 0.7830986 0.5285531 0.32800000
## 38   0.975438596  0.188259109 0.7477477 0.7836505 0.5313982 0.33133733
## 390  0.975438596  0.190823212 0.7500000 0.7842031 0.5342031 0.33466135
## 37   0.974561404  0.189946019 0.7433628 0.7840508 0.5274136 0.33399602
## 29   0.974561404  0.192510121 0.7456140 0.7846045 0.5302186 0.33730159
## 394  0.974561404  0.195074224 0.7478261 0.7851590 0.5329851 0.34059406
## 1508 0.973684211  0.194197031 0.7413793 0.7850071 0.5263864 0.33992095
## 525  0.972807018  0.193319838 0.7350427 0.7848549 0.5198977 0.33925049
## 567  0.972807018  0.195883941 0.7372881 0.7854108 0.5226989 0.34251969
## 258  0.972807018  0.198448043 0.7394958 0.7859674 0.5254632 0.34577603
## 366  0.972807018  0.201012146 0.7416667 0.7865248 0.5281915 0.34901961
## 266  0.972807018  0.203576248 0.7438017 0.7870830 0.5308847 0.35225049
## 678  0.972807018  0.206140351 0.7459016 0.7876420 0.5335437 0.35546875
## 186  0.972807018  0.208704453 0.7479675 0.7882018 0.5361693 0.35867446
## 250  0.971929825  0.207827260 0.7419355 0.7880512 0.5299867 0.35797665
## 256  0.971052632  0.206950067 0.7360000 0.7879004 0.5239004 0.35728155
## 1157 0.970175439  0.206072874 0.7301587 0.7877493 0.5179080 0.35658915
## 786  0.970175439  0.208636977 0.7322835 0.7883108 0.5205942 0.35976789
## 1373 0.969298246  0.207759784 0.7265625 0.7881598 0.5147223 0.35907336
## 337  0.969298246  0.210323887 0.7286822 0.7887223 0.5174045 0.36223507
## 616  0.968421053  0.209446694 0.7230769 0.7885714 0.5116484 0.36153846
## 761  0.967543860  0.208569501 0.7175573 0.7884203 0.5059776 0.36084453
## 340  0.967543860  0.211133603 0.7196970 0.7889843 0.5086812 0.36398467
## 370  0.967543860  0.213697706 0.7218045 0.7895490 0.5113535 0.36711281
## 157  0.967543860  0.216261808 0.7238806 0.7901146 0.5139952 0.37022901
## 123  0.967543860  0.218825911 0.7259259 0.7906810 0.5166069 0.37333333
## 991  0.966666667  0.217948718 0.7205882 0.7905308 0.5111191 0.37262357
## 187  0.966666667  0.220512821 0.7226277 0.7910983 0.5137261 0.37571157
## 481  0.966666667  0.223076923 0.7246377 0.7916667 0.5163043 0.37878788
## 600  0.965789474  0.222199730 0.7194245 0.7915169 0.5109414 0.37807183
## 217  0.965789474  0.224763833 0.7214286 0.7920863 0.5135149 0.38113208
## 124  0.965789474  0.227327935 0.7234043 0.7926566 0.5160608 0.38418079
## 610  0.964912281  0.226450742 0.7183099 0.7925072 0.5108171 0.38345865
## 1397 0.964912281  0.229014845 0.7202797 0.7930786 0.5133583 0.38649156
## 890  0.964912281  0.234143050 0.7241379 0.7942238 0.5183618 0.39252336
## 894  0.964912281  0.234143050 0.7241379 0.7942238 0.5183618 0.39252336
## 904  0.964035088  0.233265857 0.7191781 0.7940751 0.5132532 0.39179104
## 1500 0.964035088  0.235829960 0.7210884 0.7946493 0.5157377 0.39478585
## 299  0.963157895  0.234952767 0.7162162 0.7945007 0.5107169 0.39405204
## 224  0.963157895  0.237516869 0.7181208 0.7950760 0.5131968 0.39703154
## 573  0.963157895  0.240080972 0.7200000 0.7956522 0.5156522 0.40000000
## 1227 0.962280702  0.239203779 0.7152318 0.7955040 0.5107358 0.39926063
## 326  0.962280702  0.241767881 0.7171053 0.7960813 0.5131865 0.40221402
## 570  0.962280702  0.244331984 0.7189542 0.7966594 0.5156137 0.40515654
## 1294 0.961403509  0.243454791 0.7142857 0.7965116 0.5107973 0.40441176
## 778  0.961403509  0.246018893 0.7161290 0.7970909 0.5132199 0.40733945
## 87   0.961403509  0.248582996 0.7179487 0.7976710 0.5156198 0.41025641
## 272  0.961403509  0.251147099 0.7197452 0.7982520 0.5179972 0.41316271
## 135  0.961403509  0.253711201 0.7215190 0.7988338 0.5203528 0.41605839
## 893  0.961403509  0.256275304 0.7232704 0.7994165 0.5226869 0.41894353
## 172  0.961403509  0.258839406 0.7250000 0.8000000 0.5250000 0.42181818
## 1300 0.960526316  0.257962213 0.7204969 0.7998539 0.5203508 0.42105263
## 125  0.960526316  0.260526316 0.7222222 0.8004386 0.5226608 0.42391304
## 56   0.960526316  0.263090418 0.7239264 0.8010241 0.5249505 0.42676311
## 153  0.960526316  0.265654521 0.7256098 0.8016105 0.5272203 0.42960289
## 264  0.960526316  0.268218623 0.7272727 0.8021978 0.5294705 0.43243243
## 1458 0.959649123  0.267341430 0.7228916 0.8020528 0.5249444 0.43165468
## 783  0.959649123  0.269905533 0.7245509 0.8026412 0.5271921 0.43447038
## 329  0.959649123  0.272469636 0.7261905 0.8032305 0.5294210 0.43727599
## 1241 0.958771930  0.271592443 0.7218935 0.8030860 0.5249795 0.43649374
## 148  0.958771930  0.274156545 0.7235294 0.8036765 0.5272059 0.43928571
## 432  0.958771930  0.276720648 0.7251462 0.8042678 0.5294140 0.44206774
## 66   0.958771930  0.279284750 0.7267442 0.8048601 0.5316043 0.44483986
## 1262 0.958771930  0.281848853 0.7283237 0.8054532 0.5337769 0.44760213
## 184  0.958771930  0.284412955 0.7298851 0.8060472 0.5359323 0.45035461
## 96   0.957894737  0.283535762 0.7257143 0.8059041 0.5316183 0.44955752
## 1352 0.957017544  0.282658570 0.7215909 0.8057607 0.5273516 0.44876325
## 685  0.956140351  0.281781377 0.7175141 0.8056171 0.5231313 0.44797178
## 1265 0.956140351  0.284345479 0.7191011 0.8062130 0.5253141 0.45070423
## 12   0.956140351  0.286909582 0.7206704 0.8068098 0.5274802 0.45342707
## 704  0.955263158  0.286032389 0.7166667 0.8066667 0.5233333 0.45263158
## 1270 0.955263158  0.288596491 0.7182320 0.8072646 0.5254967 0.45534151
## 814  0.954385965  0.287719298 0.7142857 0.8071217 0.5214074 0.45454545
## 985  0.954385965  0.290283401 0.7158470 0.8077209 0.5235679 0.45724258
## 32   0.954385965  0.292847503 0.7173913 0.8083210 0.5257123 0.45993031
## 681  0.954385965  0.295411606 0.7189189 0.8089219 0.5278409 0.46260870
## 1137 0.953508772  0.294534413 0.7150538 0.8087798 0.5238335 0.46180556
## 680  0.953508772  0.297098516 0.7165775 0.8093820 0.5259595 0.46447140
## 376  0.953508772  0.299662618 0.7180851 0.8099851 0.5280702 0.46712803
## 247  0.952631579  0.298785425 0.7142857 0.8098434 0.5241291 0.46632124
## 343  0.952631579  0.301349528 0.7157895 0.8104478 0.5262372 0.46896552
## 262  0.952631579  0.303913630 0.7172775 0.8110530 0.5283305 0.47160069
## 749  0.951754386  0.303036437 0.7135417 0.8109118 0.5244535 0.47079038
## 477  0.951754386  0.305600540 0.7150259 0.8115183 0.5265442 0.47341338
## 544  0.951754386  0.308164642 0.7164948 0.8121257 0.5286206 0.47602740
## 887  0.951754386  0.310728745 0.7179487 0.8127341 0.5306828 0.47863248
## 228  0.951754386  0.313292848 0.7193878 0.8133433 0.5327311 0.48122867
## 46   0.950877193  0.312415655 0.7157360 0.8132033 0.5289393 0.48040886
## 532  0.950000000  0.311538462 0.7121212 0.8130631 0.5251843 0.47959184
## 902  0.949122807  0.310661269 0.7085427 0.8129226 0.5214653 0.47877759
## 1406 0.948245614  0.309784076 0.7050000 0.8127820 0.5177820 0.47796610
## 1084 0.948245614  0.312348178 0.7064677 0.8133935 0.5198612 0.48054146
## 1422 0.947368421  0.311470985 0.7029703 0.8132530 0.5162233 0.47972973
## 136  0.947368421  0.314035088 0.7044335 0.8138659 0.5182994 0.48229342
## 928  0.946491228  0.313157895 0.7009804 0.8137255 0.5147059 0.48148148
## 373  0.946491228  0.315721997 0.7024390 0.8143396 0.5167786 0.48403361
## 1171 0.945614035  0.314844804 0.6990291 0.8141994 0.5132285 0.48322148
## 1172 0.944736842  0.313967611 0.6956522 0.8140590 0.5097111 0.48241206
## 507  0.943859649  0.313090418 0.6923077 0.8139183 0.5062260 0.48160535
## 331  0.943859649  0.315654521 0.6937799 0.8145344 0.5083143 0.48414023
## 18   0.943859649  0.318218623 0.6952381 0.8151515 0.5103896 0.48666667
## 51   0.943859649  0.320782726 0.6966825 0.8157695 0.5124520 0.48918469
## 1396 0.943859649  0.323346829 0.6981132 0.8163885 0.5145017 0.49169435
## 177  0.943859649  0.325910931 0.6995305 0.8170084 0.5165389 0.49419569
## 138  0.943859649  0.328475034 0.7009346 0.8176292 0.5185638 0.49668874
## 1393 0.943859649  0.331039136 0.7023256 0.8182510 0.5205765 0.49917355
## 140  0.943859649  0.333603239 0.7037037 0.8188737 0.5225774 0.50165017
## 286  0.943859649  0.336167341 0.7050691 0.8194973 0.5245665 0.50411862
## 789  0.942982456  0.335290148 0.7018349 0.8193598 0.5211946 0.50328947
## 1506 0.942982456  0.337854251 0.7031963 0.8199847 0.5231811 0.50574713
## 130  0.942982456  0.340418354 0.7045455 0.8206107 0.5251561 0.50819672
## 980  0.942982456  0.342982456 0.7058824 0.8212376 0.5271199 0.51063830
## 1189 0.942982456  0.345546559 0.7072072 0.8218654 0.5290727 0.51307190
## 399  0.942105263  0.344669366 0.7040359 0.8217292 0.5257650 0.51223491
## 25   0.942105263  0.347233468 0.7053571 0.8223583 0.5277155 0.51465798
## 1477 0.941228070  0.346356275 0.7022222 0.8222222 0.5244444 0.51382114
## 1460 0.940350877  0.345479082 0.6991150 0.8220859 0.5212009 0.51298701
## 689  0.939473684  0.344601889 0.6960352 0.8219493 0.5179846 0.51215559
## 656  0.938596491  0.343724696 0.6929825 0.8218126 0.5147951 0.51132686
## 267  0.938596491  0.346288799 0.6943231 0.8224443 0.5167674 0.51373183
## 323  0.938596491  0.348852901 0.6956522 0.8230769 0.5187291 0.51612903
## 181  0.937719298  0.347975709 0.6926407 0.8229407 0.5155814 0.51529791
## 126  0.937719298  0.350539811 0.6939655 0.8235747 0.5175402 0.51768489
## 1029 0.936842105  0.349662618 0.6909871 0.8234387 0.5144258 0.51685393
## 527  0.935964912  0.348785425 0.6880342 0.8233025 0.5113367 0.51602564
## 324  0.935964912  0.351349528 0.6893617 0.8239382 0.5132999 0.51840000
## 1329 0.935087719  0.350472335 0.6864407 0.8238022 0.5102428 0.51757188
## 1494 0.935087719  0.353036437 0.6877637 0.8244393 0.5122030 0.51993620
## 380  0.935087719  0.355600540 0.6890756 0.8250774 0.5141530 0.52229299
## 1221 0.934210526  0.354723347 0.6861925 0.8249419 0.5111344 0.52146264
## 483  0.934210526  0.357287449 0.6875000 0.8255814 0.5130814 0.52380952
## 509  0.933333333  0.356410256 0.6846473 0.8254461 0.5100934 0.52297940
## 1335 0.932456140  0.355533063 0.6818182 0.8253106 0.5071287 0.52215190
## 1088 0.932456140  0.358097166 0.6831276 0.8259518 0.5090794 0.52448657
## 1094 0.932456140  0.360661269 0.6844262 0.8265941 0.5110203 0.52681388
## 1351 0.931578947  0.359784076 0.6816327 0.8264591 0.5080918 0.52598425
## 1155 0.930701754  0.358906883 0.6788618 0.8263240 0.5051858 0.52515723
## 423  0.930701754  0.361470985 0.6801619 0.8269680 0.5071300 0.52747253
## 240  0.930701754  0.364035088 0.6814516 0.8276131 0.5090647 0.52978056
## 817  0.929824561  0.363157895 0.6787149 0.8274785 0.5061934 0.52895149
## 1319 0.928947368  0.362280702 0.6760000 0.8273438 0.5033437 0.52812500
## 872  0.928070175  0.361403509 0.6733068 0.8272088 0.5005155 0.52730109
## 346  0.928070175  0.363967611 0.6746032 0.8278560 0.5024592 0.52959502
## 801  0.927192982  0.363090418 0.6719368 0.8277212 0.4996580 0.52877138
## 1495 0.927192982  0.365654521 0.6732283 0.8283699 0.5015983 0.53105590
## 581  0.926315789  0.364777328 0.6705882 0.8282353 0.4988235 0.53023256
## 479  0.926315789  0.367341430 0.6718750 0.8288854 0.5007604 0.53250774
## 807  0.925438596  0.366464238 0.6692607 0.8287510 0.4980117 0.53168470
## 62   0.925438596  0.369028340 0.6705426 0.8294025 0.4999452 0.53395062
## 1242 0.924561404  0.368151147 0.6679537 0.8292683 0.4972220 0.53312789
## 382  0.924561404  0.370715250 0.6692308 0.8299213 0.4991520 0.53538462
## 8    0.924561404  0.373279352 0.6704981 0.8305753 0.5010733 0.53763441
## 369  0.924561404  0.375843455 0.6717557 0.8312303 0.5029860 0.53987730
## 77   0.924561404  0.378407557 0.6730038 0.8318863 0.5048901 0.54211332
## 569  0.924561404  0.380971660 0.6742424 0.8325434 0.5067859 0.54434251
## 421  0.923684211  0.380094467 0.6716981 0.8324111 0.5041092 0.54351145
## 285  0.923684211  0.382658570 0.6729323 0.8330696 0.5060020 0.54573171
## 222  0.923684211  0.385222672 0.6741573 0.8337292 0.5078865 0.54794521
## 64   0.922807018  0.384345479 0.6716418 0.8335975 0.5052393 0.54711246
## 208  0.921929825  0.383468286 0.6691450 0.8334655 0.5026105 0.54628225
## 151  0.921929825  0.386032389 0.6703704 0.8341270 0.5044974 0.54848485
## 65   0.921929825  0.388596491 0.6715867 0.8347895 0.5063762 0.55068079
## 1264 0.921929825  0.391160594 0.6727941 0.8354531 0.5082472 0.55287009
## 473  0.921929825  0.393724696 0.6739927 0.8361177 0.5101104 0.55505279
## 1223 0.921052632  0.392847503 0.6715328 0.8359873 0.5075201 0.55421687
## 550  0.920175439  0.391970310 0.6690909 0.8358566 0.5049475 0.55338346
## 1440 0.919298246  0.391093117 0.6666667 0.8357257 0.5023923 0.55255255
## 993  0.918421053  0.390215924 0.6642599 0.8355946 0.4998545 0.55172414
## 1027 0.917543860  0.389338731 0.6618705 0.8354633 0.4973338 0.55089820
## 1483 0.916666667  0.388461538 0.6594982 0.8353317 0.4948299 0.55007474
## 1009 0.915789474  0.387584345 0.6571429 0.8352000 0.4923429 0.54925373
## 1509 0.914912281  0.386707152 0.6548043 0.8350681 0.4898723 0.54843517
## 379  0.914912281  0.389271255 0.6560284 0.8357372 0.4917655 0.55059524
## 1099 0.914035088  0.388394062 0.6537102 0.8356055 0.4893157 0.54977712
## 1313 0.913157895  0.387516869 0.6514085 0.8354735 0.4868820 0.54896142
## 676  0.913157895  0.390080972 0.6526316 0.8361446 0.4887762 0.55111111
## 693  0.912280702  0.389203779 0.6503497 0.8360129 0.4863625 0.55029586
## 1215 0.911403509  0.388326586 0.6480836 0.8358809 0.4839646 0.54948301
## 52   0.911403509  0.390890688 0.6493056 0.8365539 0.4858595 0.55162242
## 5    0.910526316  0.390013495 0.6470588 0.8364222 0.4834811 0.55081001
## 834  0.909649123  0.389136302 0.6448276 0.8362903 0.4811179 0.55000000
## 69   0.909649123  0.391700405 0.6460481 0.8369653 0.4830134 0.55212922
## 957  0.908771930  0.390823212 0.6438356 0.8368336 0.4806692 0.55131965
## 17   0.908771930  0.393387314 0.6450512 0.8375101 0.4825613 0.55344070
## 1246 0.907894737  0.392510121 0.6428571 0.8373786 0.4802358 0.55263158
## 1504 0.907894737  0.395074224 0.6440678 0.8380567 0.4821245 0.55474453
## 1260 0.907894737  0.397638327 0.6452703 0.8387358 0.4840061 0.55685131
## 1017 0.907017544  0.396761134 0.6430976 0.8386050 0.4817027 0.55604076
## 885  0.907017544  0.399325236 0.6442953 0.8392857 0.4835810 0.55813953
## 1175 0.906140351  0.398448043 0.6421405 0.8391552 0.4812956 0.55732946
## 189  0.906140351  0.401012146 0.6433333 0.8398374 0.4831707 0.55942029
## 368  0.906140351  0.403576248 0.6445183 0.8405207 0.4850390 0.56150507
## 1051 0.905263158  0.402699055 0.6423841 0.8403909 0.4827750 0.56069364
## 383  0.905263158  0.405263158 0.6435644 0.8410758 0.4846402 0.56277056
## 1485 0.904385965  0.404385965 0.6414474 0.8409462 0.4823935 0.56195965
## 1337 0.903508772  0.403508772 0.6393443 0.8408163 0.4801606 0.56115108
## 926  0.902631579  0.402631579 0.6372549 0.8406863 0.4779412 0.56034483
## 1239 0.901754386  0.401754386 0.6351792 0.8405560 0.4757352 0.55954089
## 931  0.900877193  0.400877193 0.6331169 0.8404255 0.4735424 0.55873926
## 1130 0.900000000  0.400000000 0.6310680 0.8402948 0.4713628 0.55793991
## 322  0.900000000  0.402564103 0.6322581 0.8409836 0.4732417 0.56000000
## 997  0.899122807  0.401686910 0.6302251 0.8408532 0.4710782 0.55920114
## 694  0.898245614  0.400809717 0.6282051 0.8407225 0.4689276 0.55840456
## 185  0.898245614  0.403373819 0.6293930 0.8414133 0.4708063 0.56045519
## 710  0.897368421  0.402496626 0.6273885 0.8412829 0.4686714 0.55965909
## 424  0.897368421  0.405060729 0.6285714 0.8419753 0.4705467 0.56170213
## 1214 0.896491228  0.404183536 0.6265823 0.8418451 0.4684274 0.56090652
## 281  0.896491228  0.406747638 0.6277603 0.8425392 0.4702994 0.56294201
## 1093 0.896491228  0.409311741 0.6289308 0.8432343 0.4721651 0.56497175
## 263  0.896491228  0.411875843 0.6300940 0.8439306 0.4740247 0.56699577
## 425  0.896491228  0.414439946 0.6312500 0.8446281 0.4758781 0.56901408
## 475  0.896491228  0.417004049 0.6323988 0.8453267 0.4777255 0.57102672
## 1394 0.896491228  0.419568151 0.6335404 0.8460265 0.4795669 0.57303371
## 395  0.896491228  0.422132254 0.6346749 0.8467274 0.4814023 0.57503506
## 230  0.896491228  0.424696356 0.6358025 0.8474295 0.4832320 0.57703081
## 1106 0.895614035  0.423819163 0.6338462 0.8473029 0.4811491 0.57622378
## 804  0.894736842  0.422941970 0.6319018 0.8471761 0.4790779 0.57541899
## 1505 0.894736842  0.425506073 0.6330275 0.8478803 0.4809078 0.57740586
## 213  0.894736842  0.428070175 0.6341463 0.8485857 0.4827320 0.57938719
## 1238 0.893859649  0.427192982 0.6322188 0.8484596 0.4806785 0.57858136
## 1046 0.892982456  0.426315789 0.6303030 0.8483333 0.4786364 0.57777778
## 1374 0.892105263  0.425438596 0.6283988 0.8482068 0.4766056 0.57697642
## 202  0.891228070  0.424561404 0.6265060 0.8480801 0.4745862 0.57617729
## 709  0.890350877  0.423684211 0.6246246 0.8479532 0.4725778 0.57538036
## 437  0.890350877  0.426248313 0.6257485 0.8486622 0.4744107 0.57734807
## 657  0.889473684  0.425371120 0.6238806 0.8485356 0.4724162 0.57655172
## 1248 0.888596491  0.424493927 0.6220238 0.8484087 0.4704325 0.57575758
## 233  0.888596491  0.427058030 0.6231454 0.8491199 0.4722653 0.57771664
## 615  0.887719298  0.426180837 0.6213018 0.8489933 0.4702951 0.57692308
## 276  0.887719298  0.428744939 0.6224189 0.8497061 0.4721250 0.57887517
## 614  0.886842105  0.427867746 0.6205882 0.8495798 0.4701681 0.57808219
## 1103 0.885964912  0.426990553 0.6187683 0.8494533 0.4682217 0.57729138
## 921  0.885087719  0.426113360 0.6169591 0.8493266 0.4662857 0.57650273
## 1245 0.884210526  0.425236167 0.6151603 0.8491997 0.4643600 0.57571623
## 596  0.883333333  0.424358974 0.6133721 0.8490725 0.4624446 0.57493188
## 744  0.882456140  0.423481781 0.6115942 0.8489451 0.4605394 0.57414966
## 78   0.882456140  0.426045884 0.6127168 0.8496622 0.4623789 0.57608696
## 690  0.881578947  0.425168691 0.6109510 0.8495351 0.4604861 0.57530529
## 975  0.881578947  0.427732794 0.6120690 0.8502538 0.4623228 0.57723577
## 296  0.880701754  0.426855601 0.6103152 0.8501270 0.4604422 0.57645467
## 146  0.880701754  0.429419703 0.6114286 0.8508475 0.4622760 0.57837838
## 196  0.879824561  0.428542510 0.6096866 0.8507209 0.4604076 0.57759784
## 625  0.878947368  0.427665317 0.6079545 0.8505942 0.4585488 0.57681941
## 863  0.878070175  0.426788124 0.6062323 0.8504673 0.4566996 0.57604307
## 906  0.877192982  0.425910931 0.6045198 0.8503401 0.4548599 0.57526882
## 1140 0.876315789  0.425033738 0.6028169 0.8502128 0.4530297 0.57449664
## 711  0.875438596  0.424156545 0.6011236 0.8500852 0.4512088 0.57372654
## 1114 0.874561404  0.423279352 0.5994398 0.8499574 0.4493972 0.57295850
## 22   0.873684211  0.422402159 0.5977654 0.8498294 0.4475947 0.57219251
## 692  0.872807018  0.421524966 0.5961003 0.8497011 0.4458014 0.57142857
## 1117 0.871929825  0.420647773 0.5944444 0.8495726 0.4440171 0.57066667
## 502  0.871052632  0.419770580 0.5927978 0.8494440 0.4422418 0.56990679
## 1039 0.870175439  0.418893387 0.5911602 0.8493151 0.4404753 0.56914894
## 392  0.870175439  0.421457490 0.5922865 0.8500428 0.4423293 0.57104914
## 622  0.869298246  0.420580297 0.5906593 0.8499142 0.4405736 0.57029178
## 488  0.868421053  0.419703104 0.5890411 0.8497854 0.4388265 0.56953642
## 1306 0.867543860  0.418825911 0.5874317 0.8496564 0.4370881 0.56878307
## 612  0.866666667  0.417948718 0.5858311 0.8495271 0.4353581 0.56803170
## 1141 0.865789474  0.417071525 0.5842391 0.8493976 0.4336367 0.56728232
## 1437 0.864912281  0.416194332 0.5826558 0.8492679 0.4319237 0.56653491
## 1041 0.864035088  0.415317139 0.5810811 0.8491379 0.4302190 0.56578947
## 595  0.863157895  0.414439946 0.5795148 0.8490078 0.4285226 0.56504599
## 981  0.863157895  0.417004049 0.5806452 0.8497409 0.4303861 0.56692913
## 1315 0.862280702  0.416126856 0.5790885 0.8496111 0.4286995 0.56618611
## 1336 0.861403509  0.415249663 0.5775401 0.8494810 0.4270211 0.56544503
## 1107 0.860526316  0.414372470 0.5760000 0.8493506 0.4253506 0.56470588
## 472  0.860526316  0.416936572 0.5771277 0.8500867 0.4272143 0.56657963
## 1469 0.859649123  0.416059379 0.5755968 0.8499566 0.4255535 0.56584094
## 1298 0.858771930  0.415182186 0.5740741 0.8498264 0.4239005 0.56510417
## 626  0.857894737  0.414304993 0.5725594 0.8496959 0.4222553 0.56436931
## 93   0.857017544  0.413427800 0.5710526 0.8495652 0.4206178 0.56363636
## 145  0.857017544  0.415991903 0.5721785 0.8503046 0.4224831 0.56549935
## 1464 0.856140351  0.415114710 0.5706806 0.8501742 0.4208548 0.56476684
## 495  0.855263158  0.414237517 0.5691906 0.8500436 0.4192342 0.56403622
## 109  0.854385965  0.413360324 0.5677083 0.8499127 0.4176211 0.56330749
## 1295 0.853508772  0.412483131 0.5662338 0.8497817 0.4160154 0.56258065
## 243  0.852631579  0.411605938 0.5647668 0.8496503 0.4144172 0.56185567
## 1445 0.851754386  0.410728745 0.5633075 0.8495188 0.4128263 0.56113256
## 1181 0.850877193  0.409851552 0.5618557 0.8493870 0.4112427 0.56041131
## 1334 0.850000000  0.408974359 0.5604113 0.8492550 0.4096664 0.55969191
## 497  0.849122807  0.408097166 0.5589744 0.8491228 0.4080972 0.55897436
## 897  0.848245614  0.407219973 0.5575448 0.8489903 0.4065351 0.55825864
## 1008 0.847368421  0.406342780 0.5561224 0.8488576 0.4049801 0.55754476
## 75   0.847368421  0.408906883 0.5572519 0.8496042 0.4068561 0.55938697
## 1318 0.846491228  0.408029690 0.5558376 0.8494718 0.4053094 0.55867347
## 1407 0.845614035  0.407152497 0.5544304 0.8493392 0.4037696 0.55796178
## 575  0.845614035  0.409716599 0.5555556 0.8500882 0.4056437 0.55979644
## 1297 0.844736842  0.408839406 0.5541562 0.8499559 0.4041120 0.55908513
## 1481 0.843859649  0.407962213 0.5527638 0.8498233 0.4025871 0.55837563
## 28   0.843859649  0.410526316 0.5538847 0.8505747 0.4044594 0.56020279
## 98   0.842982456  0.409649123 0.5525000 0.8504425 0.4029425 0.55949367
## 728  0.842105263  0.408771930 0.5511222 0.8503100 0.4014322 0.55878635
## 722  0.841228070  0.407894737 0.5497512 0.8501773 0.3999285 0.55808081
## 1013 0.840350877  0.407017544 0.5483871 0.8500444 0.3984315 0.55737705
## 961  0.839473684  0.406140351 0.5470297 0.8499112 0.3969409 0.55667506
## 1450 0.838596491  0.405263158 0.5456790 0.8497778 0.3954568 0.55597484
## 159  0.838596491  0.407827260 0.5467980 0.8505338 0.3973318 0.55778894
## 855  0.837719298  0.406950067 0.5454545 0.8504007 0.3958553 0.55708908
## 212  0.837719298  0.409514170 0.5465686 0.8511586 0.3977273 0.55889724
## 637  0.836842105  0.408636977 0.5452323 0.8510259 0.3962581 0.55819775
## 1388 0.836842105  0.411201080 0.5463415 0.8517857 0.3981272 0.56000000
## 15   0.835964912  0.410323887 0.5450122 0.8516533 0.3966654 0.55930087
## 1496 0.835964912  0.412887989 0.5461165 0.8524150 0.3985315 0.56109726
## 732  0.835087719  0.412010796 0.5447942 0.8522829 0.3970771 0.56039851
## 397  0.834210526  0.411133603 0.5434783 0.8521505 0.3956288 0.55970149
## 317  0.834210526  0.413697706 0.5445783 0.8529148 0.3974931 0.56149068
## 1382 0.833333333  0.412820513 0.5432692 0.8527828 0.3960520 0.56079404
## 1392 0.833333333  0.415384615 0.5443645 0.8535490 0.3979135 0.56257745
## 1529 0.832456140  0.414507422 0.5430622 0.8534173 0.3964795 0.56188119
## 538  0.831578947  0.413630229 0.5417661 0.8532853 0.3950514 0.56118665
## 706  0.830701754  0.412753036 0.5404762 0.8531532 0.3936293 0.56049383
## 1030 0.829824561  0.411875843 0.5391924 0.8530207 0.3922131 0.55980271
## 964  0.828947368  0.410998650 0.5379147 0.8528881 0.3908028 0.55911330
## 1521 0.828070175  0.410121457 0.5366430 0.8527552 0.3893982 0.55842558
## 1091 0.828070175  0.412685560 0.5377358 0.8535262 0.3912621 0.56019656
## 687  0.827192982  0.411808367 0.5364706 0.8533937 0.3898643 0.55950920
## 832  0.826315789  0.410931174 0.5352113 0.8532609 0.3884721 0.55882353
## 76   0.826315789  0.413495277 0.5362998 0.8540345 0.3903342 0.56058752
## 649  0.825438596  0.412618084 0.5350467 0.8539020 0.3889487 0.55990220
## 1426 0.824561404  0.411740891 0.5337995 0.8537693 0.3875688 0.55921856
## 144  0.824561404  0.414304993 0.5348837 0.8545455 0.3894292 0.56097561
## 1399 0.824561404  0.416869096 0.5359629 0.8553230 0.3912859 0.56272838
## 377  0.824561404  0.419433198 0.5370370 0.8561020 0.3931390 0.56447689
## 1510 0.823684211  0.418556005 0.5357968 0.8559708 0.3917676 0.56379101
## 1212 0.822807018  0.417678812 0.5345622 0.8558394 0.3904016 0.56310680
## 1514 0.821929825  0.416801619 0.5333333 0.8557078 0.3890411 0.56242424
## 1174 0.821052632  0.415924426 0.5321101 0.8555759 0.3876860 0.56174334
## 949  0.820175439  0.415047233 0.5308924 0.8554437 0.3863362 0.56106409
## 1462 0.819298246  0.414170040 0.5296804 0.8553114 0.3849917 0.56038647
## 1492 0.818421053  0.413292848 0.5284738 0.8551787 0.3836525 0.55971049
## 1066 0.817543860  0.412415655 0.5272727 0.8550459 0.3823186 0.55903614
## 546  0.817543860  0.414979757 0.5283447 0.8558310 0.3841757 0.56077016
## 835  0.816666667  0.414102564 0.5271493 0.8556985 0.3828479 0.56009615
## 1033 0.815789474  0.413225371 0.5259594 0.8555658 0.3815251 0.55942377
## 300  0.814912281  0.412348178 0.5247748 0.8554328 0.3802076 0.55875300
## 979  0.814912281  0.414912281 0.5258427 0.8562212 0.3820639 0.56047904
## 797  0.814035088  0.414035088 0.5246637 0.8560886 0.3807522 0.55980861
## 963  0.813157895  0.413157895 0.5234899 0.8559557 0.3794456 0.55913978
## 318  0.813157895  0.418286100 0.5256125 0.8575393 0.3831518 0.56257449
## 319  0.813157895  0.418286100 0.5256125 0.8575393 0.3831518 0.56257449
## 1424 0.812280702  0.417408907 0.5244444 0.8574074 0.3818519 0.56190476
## 1240 0.811403509  0.416531714 0.5232816 0.8572753 0.3805569 0.56123662
## 956  0.810526316  0.415654521 0.5221239 0.8571429 0.3792668 0.56057007
## 1476 0.809649123  0.414777328 0.5209713 0.8570102 0.3779815 0.55990510
## 30   0.809649123  0.417341430 0.5220264 0.8578067 0.3798331 0.56161137
## 1011 0.808771930  0.416464238 0.5208791 0.8576744 0.3785535 0.56094675
## 342  0.808771930  0.419028340 0.5219298 0.8584730 0.3804028 0.56264775
## 141  0.808771930  0.421592443 0.5229759 0.8592731 0.3822490 0.56434475
## 939  0.807894737  0.420715250 0.5218341 0.8591418 0.3809759 0.56367925
## 1269 0.807894737  0.423279352 0.5228758 0.8599440 0.3828198 0.56537102
## 10   0.807894737  0.425843455 0.5239130 0.8607477 0.3846607 0.56705882
## 1089 0.807894737  0.428407557 0.5249458 0.8615529 0.3864986 0.56874266
## 436  0.807894737  0.430971660 0.5259740 0.8623596 0.3883336 0.57042254
## 907  0.807017544  0.430094467 0.5248380 0.8622306 0.3870686 0.56975381
## 839  0.806140351  0.429217274 0.5237069 0.8621013 0.3858082 0.56908665
## 1228 0.805263158  0.428340081 0.5225806 0.8619718 0.3845525 0.56842105
## 1513 0.804385965  0.427462888 0.5214592 0.8618421 0.3833013 0.56775701
## 618  0.803508772  0.426585695 0.5203426 0.8617121 0.3820547 0.56709452
## 133  0.803508772  0.429149798 0.5213675 0.8625235 0.3838911 0.56876457
## 1442 0.802631579  0.428272605 0.5202559 0.8623940 0.3826498 0.56810244
## 485  0.801754386  0.427395412 0.5191489 0.8622642 0.3814131 0.56744186
## 480  0.801754386  0.429959514 0.5201699 0.8630784 0.3832482 0.56910569
## 1507 0.800877193  0.429082321 0.5190678 0.8629490 0.3820168 0.56844548
## 1304 0.800000000  0.428205128 0.5179704 0.8628193 0.3807897 0.56778679
## 1404 0.799122807  0.427327935 0.5168776 0.8626894 0.3795670 0.56712963
## 494  0.798245614  0.426450742 0.5157895 0.8625592 0.3783487 0.56647399
## 435  0.798245614  0.429014845 0.5168067 0.8633776 0.3801843 0.56812933
## 1159 0.797368421  0.428137652 0.5157233 0.8632479 0.3789711 0.56747405
## 555  0.796491228  0.427260459 0.5146444 0.8631179 0.3777622 0.56682028
## 1136 0.795614035  0.426383266 0.5135699 0.8629876 0.3765576 0.56616801
## 273  0.795614035  0.428947368 0.5145833 0.8638095 0.3783929 0.56781609
## 794  0.794736842  0.428070175 0.5135135 0.8636797 0.3771932 0.56716418
## 608  0.793859649  0.427192982 0.5124481 0.8635496 0.3759978 0.56651376
## 853  0.792982456  0.426315789 0.5113872 0.8634193 0.3748065 0.56586483
## 82   0.792982456  0.428879892 0.5123967 0.8642447 0.3766414 0.56750572
## 727  0.792105263  0.428002699 0.5113402 0.8641148 0.3754550 0.56685714
## 1296 0.791228070  0.427125506 0.5102881 0.8639847 0.3742727 0.56621005
## 790  0.790350877  0.426248313 0.5092402 0.8638543 0.3730945 0.56556442
## 1400 0.790350877  0.428812416 0.5102459 0.8646833 0.3749292 0.56719818
## 20   0.790350877  0.431376518 0.5112474 0.8655139 0.3767614 0.56882821
## 229  0.790350877  0.433940621 0.5122449 0.8663462 0.3785911 0.57045455
## 938  0.789473684  0.433063428 0.5112016 0.8662175 0.3774191 0.56980704
## 1032 0.788596491  0.432186235 0.5101626 0.8660886 0.3762512 0.56916100
## 1530 0.787719298  0.431309042 0.5091278 0.8659595 0.3750873 0.56851642
## 1005 0.786842105  0.430431849 0.5080972 0.8658301 0.3739273 0.56787330
## 959  0.785964912  0.429554656 0.5070707 0.8657005 0.3727712 0.56723164
## 1333 0.785087719  0.428677463 0.5060484 0.8655706 0.3716190 0.56659142
## 795  0.784210526  0.427800270 0.5050302 0.8654405 0.3704706 0.56595265
## 1133 0.783333333  0.426923077 0.5040161 0.8653101 0.3693261 0.56531532
## 962  0.782456140  0.426045884 0.5030060 0.8651794 0.3681854 0.56467942
## 1226 0.781578947  0.425168691 0.5020000 0.8650485 0.3670485 0.56404494
## 1191 0.781578947  0.427732794 0.5029940 0.8658892 0.3688832 0.56565657
## 169  0.780701754  0.426855601 0.5019920 0.8657588 0.3677508 0.56502242
## 34   0.780701754  0.429419703 0.5029821 0.8666018 0.3695839 0.56662934
## 474  0.780701754  0.431983806 0.5039683 0.8674464 0.3714146 0.56823266
## 942  0.779824561  0.431106613 0.5029703 0.8673171 0.3702874 0.56759777
## 426  0.779824561  0.433670715 0.5039526 0.8681641 0.3721166 0.56919643
## 1517 0.778947368  0.432793522 0.5029586 0.8680352 0.3709938 0.56856187
## 1158 0.778070175  0.431916329 0.5019685 0.8679061 0.3698746 0.56792873
## 1356 0.777192982  0.431039136 0.5009823 0.8677767 0.3687590 0.56729700
## 192  0.777192982  0.433603239 0.5019608 0.8686275 0.3705882 0.56888889
## 1135 0.776315789  0.432726046 0.5009785 0.8684985 0.3694770 0.56825749
## 976  0.776315789  0.435290148 0.5019531 0.8693517 0.3713048 0.56984479
## 333  0.776315789  0.437854251 0.5029240 0.8702065 0.3731305 0.57142857
## 1190 0.776315789  0.440418354 0.5038911 0.8710630 0.3749540 0.57300885
## 640  0.775438596  0.439541161 0.5029126 0.8709360 0.3738486 0.57237569
## 1134 0.774561404  0.438663968 0.5019380 0.8708087 0.3727467 0.57174393
## 1116 0.773684211  0.437786775 0.5009671 0.8706811 0.3716483 0.57111356
## 101  0.772807018  0.436909582 0.5000000 0.8705534 0.3705534 0.57048458
## 818  0.771929825  0.436032389 0.4990366 0.8704253 0.3694619 0.56985699
## 803  0.771052632  0.435155196 0.4980769 0.8702970 0.3683740 0.56923077
## 565  0.771052632  0.437719298 0.4990403 0.8711596 0.3701999 0.57080132
## 702  0.770175439  0.436842105 0.4980843 0.8710317 0.3691160 0.57017544
## 838  0.769298246  0.435964912 0.4971319 0.8709037 0.3680356 0.56955093
## 992  0.768421053  0.435087719 0.4961832 0.8707753 0.3669586 0.56892779
## 553  0.767543860  0.434210526 0.4952381 0.8706468 0.3658849 0.56830601
## 180  0.766666667  0.433333333 0.4942966 0.8705179 0.3648145 0.56768559
## 1479 0.765789474  0.432456140 0.4933586 0.8703888 0.3637475 0.56706652
## 940  0.764912281  0.431578947 0.4924242 0.8702595 0.3626837 0.56644880
## 11   0.764912281  0.436707152 0.4943396 0.8720000 0.3663396 0.56956522
## 120  0.764912281  0.436707152 0.4943396 0.8720000 0.3663396 0.56956522
## 847  0.764035088  0.435829960 0.4934087 0.8718719 0.3652805 0.56894680
## 802  0.763157895  0.434952767 0.4924812 0.8717435 0.3642247 0.56832972
## 1419 0.762280702  0.434075574 0.4915572 0.8716148 0.3631721 0.56771398
## 591  0.761403509  0.433198381 0.4906367 0.8714859 0.3621226 0.56709957
## 282  0.761403509  0.435762483 0.4915888 0.8723618 0.3639506 0.56864865
## 986  0.761403509  0.438326586 0.4925373 0.8732394 0.3657768 0.57019438
## 566  0.761403509  0.440890688 0.4934823 0.8741188 0.3676011 0.57173679
## 821  0.760526316  0.440013495 0.4925651 0.8739919 0.3665570 0.57112069
## 708  0.759649123  0.439136302 0.4916512 0.8738648 0.3655160 0.57050592
## 977  0.759649123  0.441700405 0.4925926 0.8747475 0.3673401 0.57204301
## 849  0.757894737  0.445074224 0.4926471 0.8762677 0.3689148 0.57387580
## 871  0.757894737  0.445074224 0.4926471 0.8762677 0.3689148 0.57387580
## 888  0.757894737  0.445074224 0.4926471 0.8762677 0.3689148 0.57387580
## 895  0.757894737  0.445074224 0.4926471 0.8762677 0.3689148 0.57387580
## 1069 0.757017544  0.444197031 0.4917431 0.8761421 0.3678853 0.57326203
## 998  0.756140351  0.443319838 0.4908425 0.8760163 0.3668588 0.57264957
## 1349 0.755263158  0.442442645 0.4899452 0.8758901 0.3658353 0.57203842
## 879  0.754385965  0.441565452 0.4890511 0.8757637 0.3648148 0.57142857
## 1478 0.753508772  0.440688259 0.4881603 0.8756371 0.3637974 0.57082002
## 1045 0.752631579  0.439811066 0.4872727 0.8755102 0.3627829 0.57021277
## 815  0.751754386  0.438933873 0.4863884 0.8753830 0.3617714 0.56960680
## 1475 0.750877193  0.438056680 0.4855072 0.8752556 0.3607629 0.56900212
## 1152 0.750000000  0.437179487 0.4846293 0.8751279 0.3597572 0.56839873
## 462  0.749122807  0.436302294 0.4837545 0.8750000 0.3587545 0.56779661
## 688  0.748245614  0.435425101 0.4828829 0.8748718 0.3577547 0.56719577
## 677  0.748245614  0.437989204 0.4838129 0.8757700 0.3595830 0.56871036
## 1281 0.747368421  0.437112011 0.4829443 0.8756423 0.3585867 0.56810982
## 484  0.747368421  0.439676113 0.4838710 0.8765432 0.3604142 0.56962025
## 1207 0.746491228  0.438798920 0.4830054 0.8764161 0.3594214 0.56902002
## 1372 0.745614035  0.437921727 0.4821429 0.8762887 0.3584315 0.56842105
## 671  0.745614035  0.440485830 0.4830660 0.8771930 0.3602589 0.56992639
## 770  0.744736842  0.439608637 0.4822064 0.8770661 0.3592725 0.56932773
## 1520 0.743859649  0.438731444 0.4813499 0.8769390 0.3582889 0.56873033
## 987  0.743859649  0.441295547 0.4822695 0.8778468 0.3601163 0.57023061
## 1358 0.742982456  0.440418354 0.4814159 0.8777202 0.3591361 0.56963351
## 298  0.742105263  0.439541161 0.4805654 0.8775934 0.3581587 0.56903766
## 1405 0.741228070  0.438663968 0.4797178 0.8774663 0.3571841 0.56844305
## 398  0.740350877  0.437786775 0.4788732 0.8773389 0.3562121 0.56784969
## 1487 0.739473684  0.436909582 0.4780316 0.8772112 0.3552429 0.56725756
## 226  0.739473684  0.439473684 0.4789474 0.8781250 0.3570724 0.56875000
## 74   0.739473684  0.442037787 0.4798599 0.8790407 0.3589006 0.57023933
## 1076 0.738596491  0.441160594 0.4790210 0.8789144 0.3579354 0.56964657
## 1070 0.737719298  0.440283401 0.4781850 0.8787879 0.3569729 0.56905504
## 121  0.737719298  0.442847503 0.4790941 0.8797071 0.3588012 0.57053942
## 1067 0.736842105  0.441970310 0.4782609 0.8795812 0.3578420 0.56994819
## 31   0.736842105  0.444534413 0.4791667 0.8805031 0.3596698 0.57142857
## 651  0.735964912  0.443657220 0.4783362 0.8803778 0.3587140 0.57083764
## 1411 0.735087719  0.442780027 0.4775087 0.8802521 0.3577608 0.57024793
## 1273 0.734210526  0.441902834 0.4766839 0.8801262 0.3568101 0.56965944
## 173  0.733333333  0.441025641 0.4758621 0.8800000 0.3558621 0.56907216
## 92   0.733333333  0.443589744 0.4767642 0.8809273 0.3576915 0.57054583
## 236  0.733333333  0.446153846 0.4776632 0.8818565 0.3595198 0.57201646
## 238  0.733333333  0.448717949 0.4785592 0.8827878 0.3613469 0.57348407
## 793  0.732456140  0.447840756 0.4777397 0.8826638 0.3604036 0.57289528
## 400  0.731578947  0.446963563 0.4769231 0.8825397 0.3594628 0.57230769
## 328  0.730701754  0.446086370 0.4761092 0.8824153 0.3585245 0.57172131
## 672  0.730701754  0.448650472 0.4770017 0.8833510 0.3603527 0.57318321
## 1243 0.729824561  0.447773279 0.4761905 0.8832272 0.3594177 0.57259714
## 533  0.728947368  0.446896086 0.4753820 0.8831031 0.3584851 0.57201226
## 1377 0.728070175  0.446018893 0.4745763 0.8829787 0.3575550 0.57142857
## 142  0.728070175  0.448582996 0.4754653 0.8839191 0.3593844 0.57288481
## 661  0.727192982  0.447705803 0.4746622 0.8837953 0.3584575 0.57230143
## 1457 0.726315789  0.446828610 0.4738617 0.8836713 0.3575330 0.57171923
## 385  0.725438596  0.445951417 0.4730640 0.8835470 0.3566110 0.57113821
## 179  0.725438596  0.448515520 0.4739496 0.8844920 0.3584416 0.57258883
## 457  0.724561404  0.447638327 0.4731544 0.8843683 0.3575227 0.57200811
## 354  0.723684211  0.446761134 0.4723618 0.8842444 0.3566062 0.57142857
## 1097 0.722807018  0.445883941 0.4715719 0.8841202 0.3556921 0.57085020
## 476  0.722807018  0.448448043 0.4724541 0.8850698 0.3575239 0.57229525
## 592  0.721929825  0.447570850 0.4716667 0.8849462 0.3566129 0.57171717
## 1387 0.721052632  0.446693657 0.4708819 0.8848224 0.3557043 0.57114026
## 1499 0.721052632  0.449257760 0.4717608 0.8857759 0.3575367 0.57258065
## 453  0.720175439  0.448380567 0.4709784 0.8856526 0.3566311 0.57200403
## 779  0.720175439  0.450944669 0.4718543 0.8866091 0.3584634 0.57344064
## 670  0.720175439  0.453508772 0.4727273 0.8875676 0.3602948 0.57487437
## 137  0.720175439  0.456072874 0.4735974 0.8885281 0.3621255 0.57630522
## 253  0.719298246  0.455195682 0.4728171 0.8884074 0.3612245 0.57572718
## 1104 0.718421053  0.454318489 0.4720395 0.8882863 0.3603258 0.57515030
## 1105 0.717543860  0.453441296 0.4712644 0.8881650 0.3594294 0.57457457
## 1355 0.716666667  0.452564103 0.4704918 0.8880435 0.3585353 0.57400000
## 389  0.716666667  0.455128205 0.4713584 0.8890098 0.3603682 0.57542458
## 469  0.715789474  0.454251012 0.4705882 0.8888889 0.3594771 0.57485030
## 209  0.714912281  0.453373819 0.4698206 0.8887677 0.3585883 0.57427717
## 1482 0.714035088  0.452496626 0.4690554 0.8886463 0.3577017 0.57370518
## 163  0.713157895  0.451619433 0.4682927 0.8885246 0.3568173 0.57313433
## 41   0.712280702  0.450742240 0.4675325 0.8884026 0.3559351 0.57256461
## 1098 0.711403509  0.449865047 0.4667747 0.8882804 0.3550551 0.57199603
## 388  0.711403509  0.452429150 0.4676375 0.8892544 0.3568919 0.57341270
## 927  0.710526316  0.451551957 0.4668821 0.8891328 0.3560149 0.57284440
## 410  0.709649123  0.450674764 0.4661290 0.8890110 0.3551400 0.57227723
## 442  0.708771930  0.449797571 0.4653784 0.8888889 0.3542673 0.57171118
## 391  0.708771930  0.452361673 0.4662379 0.8898678 0.3561058 0.57312253
## 171  0.708771930  0.454925776 0.4670947 0.8908490 0.3579437 0.57453110
## 1113 0.707894737  0.454048583 0.4663462 0.8907285 0.3570746 0.57396450
## 471  0.707017544  0.453171390 0.4656000 0.8906077 0.3562077 0.57339901
## 1180 0.706140351  0.452294197 0.4648562 0.8904867 0.3553430 0.57283465
## 1086 0.706140351  0.454858300 0.4657097 0.8914729 0.3571826 0.57423795
## 582  0.705263158  0.453981107 0.4649682 0.8913525 0.3563207 0.57367387
## 874  0.704385965  0.453103914 0.4642289 0.8912320 0.3554609 0.57311089
## 547  0.704385965  0.455668016 0.4650794 0.8922222 0.3573016 0.57450980
## 448  0.703508772  0.454790823 0.4643423 0.8921023 0.3564446 0.57394711
## 898  0.702631579  0.453913630 0.4636076 0.8919822 0.3555898 0.57338552
## 528  0.701754386  0.453036437 0.4628752 0.8918618 0.3547370 0.57282502
## 545  0.701754386  0.455600540 0.4637224 0.8928571 0.3565795 0.57421875
## 611  0.700877193  0.454723347 0.4629921 0.8927374 0.3557296 0.57365854
## 386  0.700000000  0.453846154 0.4622642 0.8926174 0.3548816 0.57309942
## 534  0.699122807  0.452968961 0.4615385 0.8924972 0.3540357 0.57254138
## 100  0.698245614  0.452091768 0.4608150 0.8923767 0.3531917 0.57198444
## 235  0.698245614  0.454655870 0.4616588 0.8933782 0.3550371 0.57337221
## 1052 0.697368421  0.453778677 0.4609375 0.8932584 0.3541959 0.57281553
## 1343 0.696491228  0.452901484 0.4602184 0.8931384 0.3533568 0.57225994
## 349  0.695614035  0.452024291 0.4595016 0.8930180 0.3525196 0.57170543
## 996  0.694736842  0.451147099 0.4587869 0.8928974 0.3516843 0.57115198
## 178  0.694736842  0.453711201 0.4596273 0.8939052 0.3535325 0.57253385
## 278  0.694736842  0.456275304 0.4604651 0.8949153 0.3553804 0.57391304
## 858  0.693859649  0.455398111 0.4597523 0.8947964 0.3545487 0.57335907
## 1375 0.692982456  0.454520918 0.4590417 0.8946772 0.3537190 0.57280617
## 1119 0.692105263  0.453643725 0.4583333 0.8945578 0.3528912 0.57225434
## 482  0.692105263  0.456207827 0.4591680 0.8955732 0.3547412 0.57362849
## 851  0.691228070  0.455330634 0.4584615 0.8954545 0.3539161 0.57307692
## 407  0.690350877  0.454453441 0.4577573 0.8953356 0.3530929 0.57252642
## 530  0.689473684  0.453576248 0.4570552 0.8952164 0.3522716 0.57197697
## 603  0.688596491  0.452699055 0.4563553 0.8950969 0.3514522 0.57142857
## 490  0.687719298  0.451821862 0.4556575 0.8949772 0.3506347 0.57088123
## 1178 0.686842105  0.450944669 0.4549618 0.8948571 0.3498190 0.57033493
## 232  0.686842105  0.453508772 0.4557927 0.8958810 0.3516737 0.57170172
## 1408 0.685964912  0.452631579 0.4550989 0.8957617 0.3508607 0.57115568
## 1078 0.685087719  0.451754386 0.4544073 0.8956422 0.3500495 0.57061069
## 24   0.684210526  0.450877193 0.4537178 0.8955224 0.3492401 0.57006673
## 1425 0.683333333  0.450000000 0.4530303 0.8954023 0.3484326 0.56952381
## 1205 0.682456140  0.449122807 0.4523449 0.8952819 0.3476269 0.56898192
## 1055 0.681578947  0.448245614 0.4516616 0.8951613 0.3468229 0.56844106
## 585  0.680701754  0.447368421 0.4509804 0.8950404 0.3460208 0.56790123
## 624  0.679824561  0.446491228 0.4503012 0.8949192 0.3452204 0.56736243
## 378  0.679824561  0.449055331 0.4511278 0.8959538 0.3470816 0.56872038
## 1129 0.678947368  0.448178138 0.4504505 0.8958333 0.3462838 0.56818182
## 1430 0.678070175  0.447300945 0.4497751 0.8957126 0.3454877 0.56764428
## 265  0.677192982  0.448987854 0.4499253 0.8966318 0.3465571 0.56846081
## 1341 0.677192982  0.448987854 0.4499253 0.8966318 0.3465571 0.56846081
## 1357 0.676315789  0.448110661 0.4492537 0.8965116 0.3457654 0.56792453
## 134  0.676315789  0.450674764 0.4500745 0.8975553 0.3476298 0.56927427
## 470  0.675438596  0.449797571 0.4494048 0.8974359 0.3468407 0.56873823
## 886  0.675438596  0.452361673 0.4502229 0.8984831 0.3487060 0.57008467
## 1208 0.674561404  0.451484480 0.4495549 0.8983645 0.3479194 0.56954887
## 1071 0.673684211  0.450607287 0.4488889 0.8982456 0.3471345 0.56901408
## 1474 0.672807018  0.449730094 0.4482249 0.8981265 0.3463513 0.56848030
## 854  0.671929825  0.451417004 0.4483776 0.8990610 0.3474386 0.56928839
## 892  0.671929825  0.451417004 0.4483776 0.8990610 0.3474386 0.56928839
## 440  0.671052632  0.450539811 0.4477172 0.8989424 0.3466597 0.56875585
## 456  0.670175439  0.449662618 0.4470588 0.8988235 0.3458824 0.56822430
## 225  0.670175439  0.452226721 0.4478708 0.8998822 0.3477530 0.56956116
## 1150 0.669298246  0.451349528 0.4472141 0.8997642 0.3469782 0.56902985
## 1092 0.669298246  0.453913630 0.4480234 0.9008264 0.3488499 0.57036347
## 162  0.668421053  0.453036437 0.4473684 0.9007092 0.3480776 0.56983240
## 422  0.667543860  0.452159244 0.4467153 0.9005917 0.3473070 0.56930233
## 564  0.667543860  0.454723347 0.4475219 0.9016588 0.3491806 0.57063197
## 452  0.666666667  0.453846154 0.4468705 0.9015421 0.3484126 0.57010214
## 176  0.665789474  0.452968961 0.4462209 0.9014252 0.3476461 0.56957328
## 1332 0.664912281  0.452091768 0.4455733 0.9013080 0.3468813 0.56904541
## 521  0.664035088  0.451214575 0.4449275 0.9011905 0.3461180 0.56851852
## 168  0.663157895  0.450337382 0.4442836 0.9010727 0.3453564 0.56799260
## 792  0.662280702  0.449460189 0.4436416 0.9009547 0.3445963 0.56746765
## 623  0.661403509  0.448582996 0.4430014 0.9008363 0.3438378 0.56694367
## 487  0.660526316  0.447705803 0.4423631 0.9007177 0.3430808 0.56642066
## 909  0.659649123  0.446828610 0.4417266 0.9005988 0.3423254 0.56589862
## 1085 0.659649123  0.449392713 0.4425287 0.9016787 0.3442074 0.56721915
## 1272 0.658771930  0.448515520 0.4418938 0.9015606 0.3434545 0.56669733
## 613  0.657894737  0.447638327 0.4412607 0.9014423 0.3427031 0.56617647
## 609  0.657017544  0.446761134 0.4406295 0.9013237 0.3419532 0.56565657
## 1331 0.656140351  0.445883941 0.4400000 0.9012048 0.3412048 0.56513761
## 765  0.655263158  0.445006748 0.4393723 0.9010856 0.3404580 0.56461962
## 599  0.654385965  0.444129555 0.4387464 0.9009662 0.3397126 0.56410256
## 1200 0.654385965  0.446693657 0.4395448 0.9020556 0.3416004 0.56541629
## 1016 0.653508772  0.445816464 0.4389205 0.9019370 0.3408575 0.56489945
## 750  0.652631579  0.444939271 0.4382979 0.9018182 0.3401161 0.56438356
## 882  0.651754386  0.444062078 0.4376771 0.9016990 0.3393761 0.56386861
## 459  0.650877193  0.443184885 0.4370580 0.9015796 0.3386376 0.56335460
## 1480 0.650000000  0.442307692 0.4364407 0.9014599 0.3379005 0.56284153
## 1389 0.650000000  0.444871795 0.4372355 0.9025579 0.3397934 0.56414923
## 1391 0.650000000  0.447435897 0.4380282 0.9036585 0.3416867 0.56545455
## 1390 0.650000000  0.450000000 0.4388186 0.9047619 0.3435805 0.56675749
## 1064 0.649122807  0.449122807 0.4382022 0.9046455 0.3428477 0.56624319
## 1398 0.649122807  0.451686910 0.4389902 0.9057528 0.3447429 0.56754306
## 598  0.648245614  0.450809717 0.4383754 0.9056373 0.3440126 0.56702899
## 584  0.647368421  0.449932524 0.4377622 0.9055215 0.3432837 0.56651584
## 944  0.646491228  0.449055331 0.4371508 0.9054054 0.3425562 0.56600362
## 103  0.645614035  0.448178138 0.4365411 0.9052891 0.3418302 0.56549232
## 188  0.645614035  0.450742240 0.4373259 0.9064039 0.3437298 0.56678700
## 1463 0.644736842  0.449865047 0.4367177 0.9062885 0.3430062 0.56627592
## 781  0.644736842  0.452429150 0.4375000 0.9074074 0.3449074 0.56756757
## 341  0.644736842  0.454993252 0.4382802 0.9085290 0.3468092 0.56885689
## 602  0.643859649  0.454116059 0.4376731 0.9084158 0.3460890 0.56834532
## 1161 0.642982456  0.453238866 0.4370678 0.9083024 0.3453701 0.56783468
## 771  0.642105263  0.452361673 0.4364641 0.9081886 0.3446527 0.56732496
## 540  0.641228070  0.451484480 0.4358621 0.9080745 0.3439366 0.56681614
## 725  0.640350877  0.450607287 0.4352617 0.9079602 0.3432219 0.56630824
## 745  0.639473684  0.449730094 0.4346630 0.9078456 0.3425086 0.56580125
## 510  0.638596491  0.448852901 0.4340659 0.9077307 0.3417966 0.56529517
## 522  0.637719298  0.447975709 0.4334705 0.9076155 0.3410860 0.56478999
## 2    0.637719298  0.450539811 0.4342466 0.9087500 0.3429966 0.56607143
## 1087 0.637719298  0.453103914 0.4350205 0.9098874 0.3449079 0.56735058
## 950  0.636842105  0.452226721 0.4344262 0.9097744 0.3442007 0.56684492
## 662  0.635964912  0.451349528 0.4338336 0.9096612 0.3434948 0.56634016
## 768  0.635087719  0.450472335 0.4332425 0.9095477 0.3427902 0.56583630
## 63   0.634210526  0.449595142 0.4326531 0.9094340 0.3420870 0.56533333
## 107  0.633333333  0.448717949 0.4320652 0.9093199 0.3413851 0.56483126
## 753  0.632456140  0.447840756 0.4314790 0.9092055 0.3406845 0.56433008
## 713  0.631578947  0.446963563 0.4308943 0.9090909 0.3399852 0.56382979
## 1395 0.631578947  0.449527665 0.4316644 0.9102402 0.3419046 0.56510186
## 601  0.630701754  0.448650472 0.4310811 0.9101266 0.3412077 0.56460177
## 1428 0.629824561  0.447773279 0.4304993 0.9100127 0.3405120 0.56410256
## 775  0.628947368  0.446896086 0.4299191 0.9098985 0.3398176 0.56360424
## 190  0.628947368  0.449460189 0.4306864 0.9110546 0.3417410 0.56487202
## 715  0.628070175  0.448582996 0.4301075 0.9109415 0.3410490 0.56437390
## 339  0.628070175  0.451147099 0.4308725 0.9121019 0.3429744 0.56563877
## 1330 0.627192982  0.450269906 0.4302949 0.9119898 0.3422847 0.56514085
## 375  0.627192982  0.452834008 0.4310576 0.9131545 0.3442121 0.56640281
## 99   0.626315789  0.451956815 0.4304813 0.9130435 0.3435248 0.56590510
## 785  0.626315789  0.454520918 0.4312417 0.9142125 0.3454542 0.56716418
## 139  0.626315789  0.457085020 0.4320000 0.9153846 0.3473846 0.56842105
## 655  0.625438596  0.456207827 0.4314248 0.9152760 0.3467008 0.56792287
## 1451 0.624561404  0.455330634 0.4308511 0.9151671 0.3460182 0.56742557
## 1527 0.623684211  0.454453441 0.4302789 0.9150579 0.3453368 0.56692913
## 95   0.622807018  0.453576248 0.4297082 0.9149485 0.3446567 0.56643357
## 458  0.621929825  0.452699055 0.4291391 0.9148387 0.3439778 0.56593886
## 154  0.621929825  0.455263158 0.4298942 0.9160207 0.3459149 0.56719023
## 579  0.621052632  0.454385965 0.4293263 0.9159120 0.3452383 0.56669573
## 161  0.620175439  0.453508772 0.4287599 0.9158031 0.3445630 0.56620209
## 562  0.619298246  0.452631579 0.4281950 0.9156939 0.3438889 0.56570931
## 220  0.618421053  0.451754386 0.4276316 0.9155844 0.3432160 0.56521739
## 175  0.617543860  0.450877193 0.4270696 0.9154746 0.3425443 0.56472632
## 741  0.616666667  0.450000000 0.4265092 0.9153646 0.3418738 0.56423611
## 919  0.615789474  0.449122807 0.4259502 0.9152542 0.3412044 0.56374675
## 873  0.614912281  0.448245614 0.4253927 0.9151436 0.3405363 0.56325823
## 274  0.614912281  0.450809717 0.4261438 0.9163399 0.3424837 0.56450216
## 1282 0.614035088  0.449932524 0.4255875 0.9162304 0.3418178 0.56401384
## 311  0.613157895  0.449055331 0.4250326 0.9161206 0.3411532 0.56352636
## 39   0.613157895  0.451619433 0.4257812 0.9173228 0.3431041 0.56476684
## 371  0.612280702  0.453306343 0.4259740 0.9184211 0.3443951 0.56551724
## 1448 0.612280702  0.453306343 0.4259740 0.9184211 0.3443951 0.56551724
## 1232 0.611403509  0.452429150 0.4254215 0.9183136 0.3437351 0.56503015
## 219  0.610526316  0.451551957 0.4248705 0.9182058 0.3430763 0.56454389
## 763  0.609649123  0.450674764 0.4243208 0.9180978 0.3424186 0.56405847
## 580  0.608771930  0.449797571 0.4237726 0.9179894 0.3417620 0.56357388
## 869  0.607894737  0.448920378 0.4232258 0.9178808 0.3411066 0.56309013
## 110  0.607894737  0.451484480 0.4239691 0.9190981 0.3430672 0.56432247
## 45   0.607017544  0.450607287 0.4234234 0.9189907 0.3424141 0.56383890
## 27   0.606140351  0.449730094 0.4228792 0.9188830 0.3417622 0.56335616
## 654  0.605263158  0.448852901 0.4223363 0.9187750 0.3411113 0.56287425
## 42   0.605263158  0.451417004 0.4230769 0.9200000 0.3430769 0.56410256
## 234  0.605263158  0.453981107 0.4238156 0.9212283 0.3450439 0.56532878
## 1305 0.604385965  0.453103914 0.4232737 0.9211230 0.3443967 0.56484642
## 478  0.604385965  0.455668016 0.4240102 0.9223561 0.3463663 0.56606991
## 1284 0.603508772  0.454790823 0.4234694 0.9222520 0.3457214 0.56558773
## 308  0.602631579  0.453913630 0.4229299 0.9221477 0.3450776 0.56510638
## 548  0.601754386  0.453036437 0.4223919 0.9220430 0.3444349 0.56462585
## 364  0.600877193  0.452159244 0.4218551 0.9219381 0.3437932 0.56414613
## 1018 0.600000000  0.451282051 0.4213198 0.9218329 0.3431527 0.56366723
## 203  0.599122807  0.450404858 0.4207858 0.9217274 0.3425132 0.56318914
## 1427 0.598245614  0.449527665 0.4202532 0.9216216 0.3418748 0.56271186
## 94   0.597368421  0.448650472 0.4197219 0.9215156 0.3412374 0.56223539
## 777  0.597368421  0.451214575 0.4204545 0.9227642 0.3432188 0.56345178
## 297  0.596491228  0.450337382 0.4199243 0.9226594 0.3425838 0.56297549
## 149  0.596491228  0.452901484 0.4206549 0.9239130 0.3445680 0.56418919
## 218  0.596491228  0.455465587 0.4213836 0.9251701 0.3465537 0.56540084
## 506  0.595614035  0.454588394 0.4208543 0.9250681 0.3459224 0.56492411
## 3    0.594736842  0.453711201 0.4203262 0.9249659 0.3452921 0.56444819
## 1012 0.593859649  0.452834008 0.4197995 0.9248634 0.3446629 0.56397306
## 524  0.592982456  0.451956815 0.4192741 0.9247606 0.3440347 0.56349874
## 787  0.592982456  0.454520918 0.4200000 0.9260274 0.3460274 0.56470588
## 946  0.592105263  0.453643725 0.4194757 0.9259259 0.3454016 0.56423174
## 496  0.591228070  0.452766532 0.4189526 0.9258242 0.3447768 0.56375839
## 1299 0.590350877  0.451889339 0.4184309 0.9257221 0.3441530 0.56328583
## 26   0.589473684  0.451012146 0.4179104 0.9256198 0.3435303 0.56281407
## 1429 0.588596491  0.450134953 0.4173913 0.9255172 0.3429085 0.56234310
## 68   0.587719298  0.449257760 0.4168734 0.9254144 0.3422878 0.56187291
## 433  0.587719298  0.451821862 0.4175960 0.9266943 0.3442904 0.56307435
## 1062 0.586842105  0.450944669 0.4170792 0.9265928 0.3436720 0.56260434
## 1316 0.585964912  0.450067476 0.4165637 0.9264910 0.3430546 0.56213511
## 1195 0.585964912  0.452631579 0.4172840 0.9277778 0.3450617 0.56333333
## 374  0.585964912  0.455195682 0.4180025 0.9290682 0.3470706 0.56452956
## 498  0.585087719  0.454318489 0.4174877 0.9289694 0.3464570 0.56405990
## 111  0.584210526  0.453441296 0.4169742 0.9288703 0.3458445 0.56359102
## 1050 0.583333333  0.452564103 0.4164619 0.9287709 0.3452329 0.56312292
## 1468 0.582456140  0.451686910 0.4159509 0.9286713 0.3446222 0.56265560
## 1376 0.581578947  0.450809717 0.4154412 0.9285714 0.3440126 0.56218905
## 486  0.580701754  0.449932524 0.4149327 0.9284712 0.3434039 0.56172328
## 1127 0.579824561  0.449055331 0.4144254 0.9283708 0.3427962 0.56125828
## 1293 0.578947368  0.448178138 0.4139194 0.9282700 0.3421895 0.56079404
## 1068 0.578070175  0.447300945 0.4134146 0.9281690 0.3415836 0.56033058
## 1132 0.577192982  0.446423752 0.4129111 0.9280677 0.3409788 0.55986788
## 414  0.576315789  0.445546559 0.4124088 0.9279661 0.3403749 0.55940594
## 945  0.575438596  0.444669366 0.4119077 0.9278642 0.3397719 0.55894477
## 1131 0.574561404  0.443792173 0.4114078 0.9277620 0.3391698 0.55848435
## 338  0.574561404  0.446356275 0.4121212 0.9290780 0.3411992 0.55967078
## 1439 0.573684211  0.445479082 0.4116223 0.9289773 0.3405995 0.55921053
## 791  0.572807018  0.444601889 0.4111245 0.9288762 0.3400008 0.55875103
## 632  0.571929825  0.443724696 0.4106280 0.9287749 0.3394029 0.55829228
## 61   0.571929825  0.446288799 0.4113390 0.9300999 0.3414388 0.55947498
## 973  0.571052632  0.445411606 0.4108434 0.9300000 0.3408434 0.55901639
## 1443 0.570175439  0.444534413 0.4103490 0.9298999 0.3402488 0.55855856
## 810  0.569298246  0.443657220 0.4098558 0.9297994 0.3396552 0.55810147
## 1049 0.568421053  0.442780027 0.4093637 0.9296987 0.3390625 0.55764513
## 1020 0.567543860  0.441902834 0.4088729 0.9295977 0.3384706 0.55718954
## 1342 0.566666667  0.441025641 0.4083832 0.9294964 0.3378796 0.55673469
## 1423 0.565789474  0.440148448 0.4078947 0.9293948 0.3372895 0.55628059
## 36   0.564912281  0.439271255 0.4074074 0.9292929 0.3367003 0.55582722
## 1449 0.564035088  0.438394062 0.4069212 0.9291908 0.3361120 0.55537459
## 201  0.563157895  0.437516869 0.4064362 0.9290883 0.3355245 0.55492270
## 1042 0.562280702  0.436639676 0.4059524 0.9289855 0.3349379 0.55447154
## 1096 0.561403509  0.435762483 0.4054697 0.9288824 0.3343521 0.55402112
## 974  0.560526316  0.434885290 0.4049881 0.9287791 0.3337672 0.55357143
## 239  0.560526316  0.437449393 0.4056940 0.9301310 0.3358250 0.55474453
## 268  0.560526316  0.440013495 0.4063981 0.9314869 0.3378850 0.55591572
## 866  0.559649123  0.439136302 0.4059172 0.9313869 0.3373040 0.55546559
## 943  0.558771930  0.438259109 0.4054374 0.9312865 0.3367239 0.55501618
## 796  0.557894737  0.437381916 0.4049587 0.9311859 0.3361446 0.55456750
## 1441 0.557017544  0.436504723 0.4044811 0.9310850 0.3355662 0.55411955
## 439  0.556140351  0.435627530 0.4040047 0.9309838 0.3349886 0.55367232
## 908  0.555263158  0.434750337 0.4035294 0.9308824 0.3344118 0.55322581
## 160  0.554385965  0.433873144 0.4030552 0.9307806 0.3338358 0.55278002
## 556  0.553508772  0.432995951 0.4025822 0.9306785 0.3332606 0.55233494
## 21   0.553508772  0.435560054 0.4032825 0.9320532 0.3353357 0.55349960
## 1015 0.552631579  0.434682861 0.4028103 0.9319527 0.3347630 0.55305466
## 571  0.552631579  0.437246964 0.4035088 0.9333333 0.3368421 0.55421687
## 1278 0.551754386  0.436369771 0.4030374 0.9332344 0.3362718 0.55377207
## 1010 0.550877193  0.435492578 0.4025671 0.9331352 0.3357023 0.55332799
## 164  0.550000000  0.434615385 0.4020979 0.9330357 0.3351336 0.55288462
## 1120 0.549122807  0.433738192 0.4016298 0.9329359 0.3345657 0.55244195
## 760  0.548245614  0.432860999 0.4011628 0.9328358 0.3339986 0.55200000
## 1115 0.547368421  0.431983806 0.4006969 0.9327354 0.3334323 0.55155875
## 911  0.546491228  0.431106613 0.4002320 0.9326347 0.3328667 0.55111821
## 523  0.545614035  0.430229420 0.3997683 0.9325337 0.3323020 0.55067837
## 764  0.544736842  0.429352227 0.3993056 0.9324324 0.3317380 0.55023923
## 255  0.543859649  0.428475034 0.3988439 0.9323308 0.3311748 0.54980080
## 1048 0.542982456  0.427597841 0.3983834 0.9322289 0.3306123 0.54936306
## 1095 0.542105263  0.426720648 0.3979239 0.9321267 0.3300506 0.54892601
## 1090 0.542105263  0.429284750 0.3986175 0.9335347 0.3321523 0.55007949
## 675  0.542105263  0.431848853 0.3993096 0.9349470 0.3342566 0.55123114
## 1186 0.541228070  0.430971660 0.3988506 0.9348485 0.3336991 0.55079365
## 922  0.540350877  0.430094467 0.3983927 0.9347496 0.3331423 0.55035686
## 67   0.540350877  0.432658570 0.3990826 0.9361702 0.3352528 0.55150555
## 784  0.540350877  0.435222672 0.3997709 0.9375951 0.3373660 0.55265241
## 242  0.539473684  0.434345479 0.3993135 0.9375000 0.3368135 0.55221519
## 489  0.538596491  0.433468286 0.3988571 0.9374046 0.3362617 0.55177866
## 653  0.537719298  0.432591093 0.3984018 0.9373089 0.3357107 0.55134281
## 1402 0.536842105  0.431713900 0.3979475 0.9372129 0.3351604 0.55090766
## 960  0.535964912  0.430836707 0.3974943 0.9371166 0.3346109 0.55047319
## 1363 0.535087719  0.429959514 0.3970421 0.9370200 0.3340621 0.55003940
## 91   0.535087719  0.432523617 0.3977273 0.9384615 0.3361888 0.55118110
## 1040 0.534210526  0.431646424 0.3972758 0.9383667 0.3356425 0.55074744
## 967  0.533333333  0.430769231 0.3968254 0.9382716 0.3350970 0.55031447
## 1421 0.532456140  0.429892038 0.3963760 0.9381762 0.3345522 0.54988217
## 574  0.532456140  0.432456140 0.3970588 0.9396285 0.3366873 0.55102041
## 531  0.531578947  0.431578947 0.3966102 0.9395349 0.3361451 0.55058824
## 703  0.530701754  0.430701754 0.3961625 0.9394410 0.3356035 0.55015674
## 402  0.529824561  0.429824561 0.3957159 0.9393468 0.3350627 0.54972592
## 1512 0.528947368  0.428947368 0.3952703 0.9392523 0.3345226 0.54929577
## 846  0.528070175  0.428070175 0.3948256 0.9391576 0.3339832 0.54886630
## 511  0.527192982  0.427192982 0.3943820 0.9390625 0.3334445 0.54843750
## 1162 0.526315789  0.426315789 0.3939394 0.9389671 0.3329065 0.54800937
## 1320 0.525438596  0.425438596 0.3934978 0.9388715 0.3323692 0.54758190
## 244  0.524561404  0.424561404 0.3930571 0.9387755 0.3318326 0.54715511
## 53   0.524561404  0.427125506 0.3937360 0.9402516 0.3339876 0.54828660
## 1370 0.523684211  0.426248313 0.3932961 0.9401575 0.3334536 0.54785992
## 984  0.523684211  0.428812416 0.3939732 0.9416404 0.3356136 0.54898911
## 1456 0.522807018  0.427935223 0.3935340 0.9415482 0.3350822 0.54856255
## 674  0.522807018  0.430499325 0.3942094 0.9430380 0.3372473 0.54968944
## 937  0.521929825  0.429622132 0.3937709 0.9429477 0.3367186 0.54926299
## 1028 0.521052632  0.428744939 0.3933333 0.9428571 0.3361905 0.54883721
## 71   0.520175439  0.427867746 0.3928968 0.9427663 0.3356631 0.54841208
## 33   0.520175439  0.430431849 0.3935698 0.9442675 0.3378374 0.54953560
## 197  0.519298246  0.429554656 0.3931340 0.9441786 0.3373126 0.54911060
## 1034 0.518421053  0.428677463 0.3926991 0.9440895 0.3367886 0.54868624
## 925  0.517543860  0.427800270 0.3922652 0.9440000 0.3362652 0.54826255
## 1054 0.516666667  0.426923077 0.3918322 0.9439103 0.3357425 0.54783951
## 700  0.515789474  0.426045884 0.3914002 0.9438202 0.3352204 0.54741712
## 995  0.514912281  0.425168691 0.3909692 0.9437299 0.3346991 0.54699538
## 867  0.514035088  0.424291498 0.3905391 0.9436393 0.3341783 0.54657429
## 1144 0.513157895  0.423414305 0.3901099 0.9435484 0.3336583 0.54615385
## 127  0.512280702  0.425101215 0.3903509 0.9449838 0.3353347 0.54685100
## 842  0.512280702  0.425101215 0.3903509 0.9449838 0.3353347 0.54685100
## 666  0.511403509  0.424224022 0.3899233 0.9448947 0.3348180 0.54643131
## 769  0.510526316  0.423346829 0.3894967 0.9448052 0.3343019 0.54601227
## 837  0.509649123  0.422469636 0.3890710 0.9447154 0.3337865 0.54559387
## 1287 0.508771930  0.421592443 0.3886463 0.9446254 0.3332717 0.54517611
## 1472 0.507894737  0.420715250 0.3882225 0.9445351 0.3327575 0.54475899
## 117  0.507017544  0.419838057 0.3877996 0.9444444 0.3322440 0.54434251
## 714  0.506140351  0.418960864 0.3873776 0.9443535 0.3317311 0.54392666
## 1151 0.505263158  0.418083671 0.3869565 0.9442623 0.3312188 0.54351145
## 955  0.504385965  0.417206478 0.3865364 0.9441708 0.3307071 0.54309687
## 1271 0.504385965  0.419770580 0.3872017 0.9457237 0.3329254 0.54420732
## 1031 0.503508772  0.418893387 0.3867822 0.9456343 0.3324165 0.54379284
## 1110 0.502631579  0.418016194 0.3863636 0.9455446 0.3319082 0.54337900
## 393  0.502631579  0.420580297 0.3870270 0.9471074 0.3341345 0.54448669
## 958  0.501754386  0.419703104 0.3866091 0.9470199 0.3336289 0.54407295
## 1014 0.500877193  0.418825911 0.3861920 0.9469320 0.3331240 0.54365983
## 910  0.500000000  0.417948718 0.3857759 0.9468439 0.3326197 0.54324734
## 954  0.499122807  0.417071525 0.3853606 0.9467554 0.3321160 0.54283548
## 848  0.498245614  0.416194332 0.3849462 0.9466667 0.3316129 0.54242424
## 1154 0.497368421  0.415317139 0.3845328 0.9465776 0.3311104 0.54201363
## 679  0.497368421  0.417881242 0.3851931 0.9481605 0.3333537 0.54311649
## 195  0.496491228  0.417004049 0.3847803 0.9480737 0.3328540 0.54270597
## 583  0.495614035  0.416126856 0.3843683 0.9479866 0.3323549 0.54229607
## 650  0.494736842  0.415249663 0.3839572 0.9478992 0.3318564 0.54188679
## 119  0.494736842  0.417813765 0.3846154 0.9494949 0.3341103 0.54298643
## 520  0.493859649  0.416936572 0.3842049 0.9494098 0.3336147 0.54257724
## 1314 0.492982456  0.416059379 0.3837953 0.9493243 0.3331196 0.54216867
## 1350 0.492105263  0.415182186 0.3833866 0.9492386 0.3326252 0.54176072
## 514  0.491228070  0.414304993 0.3829787 0.9491525 0.3321313 0.54135338
## 788  0.491228070  0.416869096 0.3836344 0.9507640 0.3343984 0.54244929
## 434  0.490350877  0.415991903 0.3832272 0.9506803 0.3339074 0.54204204
## 1060 0.489473684  0.415114710 0.3828208 0.9505963 0.3334170 0.54163541
## 404  0.488596491  0.414237517 0.3824153 0.9505119 0.3329272 0.54122939
## 543  0.487719298  0.413360324 0.3820106 0.9504274 0.3324379 0.54082397
## 156  0.487719298  0.415924426 0.3826638 0.9520548 0.3347186 0.54191617
## 58   0.486842105  0.415047233 0.3822598 0.9519726 0.3342323 0.54151085
## 933  0.485964912  0.414170040 0.3818565 0.9518900 0.3337466 0.54110613
## 1263 0.485964912  0.416734143 0.3825079 0.9535284 0.3360363 0.54219567
## 1247 0.485087719  0.415856950 0.3821053 0.9534483 0.3355535 0.54179104
## 683  0.484210526  0.414979757 0.3817035 0.9533679 0.3350713 0.54138702
## 816  0.483333333  0.414102564 0.3813025 0.9532872 0.3345897 0.54098361
## 1252 0.482456140  0.413225371 0.3809024 0.9532062 0.3341087 0.54058079
## 631  0.481578947  0.412348178 0.3805031 0.9531250 0.3336281 0.54017857
## 901  0.480701754  0.411470985 0.3801047 0.9530435 0.3331482 0.53977695
## 868  0.479824561  0.410593792 0.3797071 0.9529617 0.3326688 0.53937593
## 1160 0.478947368  0.409716599 0.3793103 0.9528796 0.3321899 0.53897550
## 518  0.478070175  0.408839406 0.3789144 0.9527972 0.3317116 0.53857567
## 833  0.477192982  0.407962213 0.3785193 0.9527145 0.3312338 0.53817643
## 1112 0.476315789  0.407085020 0.3781250 0.9526316 0.3307566 0.53777778
## 1359 0.475438596  0.406207827 0.3777315 0.9525483 0.3302799 0.53737972
## 738  0.474561404  0.405330634 0.3773389 0.9524648 0.3298037 0.53698225
## 1194 0.474561404  0.407894737 0.3779855 0.9541446 0.3321301 0.53806356
## 315  0.473684211  0.407017544 0.3775934 0.9540636 0.3316570 0.53766617
## 829  0.472807018  0.406140351 0.3772021 0.9539823 0.3311844 0.53726937
## 682  0.472807018  0.408704453 0.3778468 0.9556738 0.3335205 0.53834808
## 934  0.471929825  0.407827260 0.3774560 0.9555950 0.3330511 0.53795136
## 1173 0.471052632  0.406950067 0.3770661 0.9555160 0.3325821 0.53755523
## 647  0.470175439  0.406072874 0.3766770 0.9554367 0.3321137 0.53715968
## 1368 0.469298246  0.405195682 0.3762887 0.9553571 0.3316458 0.53676471
## 269  0.469298246  0.407759784 0.3769310 0.9570662 0.3339972 0.53783982
## 1258 0.468421053  0.406882591 0.3765432 0.9569892 0.3335325 0.53744493
## 1268 0.468421053  0.409446694 0.3771840 0.9587074 0.3358913 0.53851798
## 1511 0.467543860  0.408569501 0.3767967 0.9586331 0.3354298 0.53812317
## 1353 0.466666667  0.407692308 0.3764103 0.9585586 0.3349688 0.53772894
## 128  0.465789474  0.406815115 0.3760246 0.9584838 0.3345083 0.53733529
## 554  0.464912281  0.405937922 0.3756397 0.9584087 0.3340484 0.53694221
## 1056 0.464035088  0.405060729 0.3752556 0.9583333 0.3335890 0.53654971
## 836  0.463157895  0.404183536 0.3748723 0.9582577 0.3331300 0.53615778
## 348  0.463157895  0.406747638 0.3755102 0.9600000 0.3355102 0.53722628
## 542  0.462280702  0.405870445 0.3751274 0.9599271 0.3350546 0.53683443
## 517  0.461403509  0.404993252 0.3747454 0.9598540 0.3345994 0.53644315
## 1235 0.460526316  0.404116059 0.3743642 0.9597806 0.3341448 0.53605244
## 363  0.459649123  0.403238866 0.3739837 0.9597070 0.3336907 0.53566230
## 73   0.459649123  0.405802969 0.3746193 0.9614679 0.3360872 0.53672727
## 1365 0.458771930  0.404925776 0.3742394 0.9613971 0.3356364 0.53633721
## 669  0.457894737  0.404048583 0.3738602 0.9613260 0.3351861 0.53594771
## 48   0.457894737  0.406612686 0.3744939 0.9630996 0.3375936 0.53701016
## 118  0.457017544  0.405735493 0.3741153 0.9630314 0.3371467 0.53662074
## 1063 0.456140351  0.404858300 0.3737374 0.9629630 0.3367003 0.53623188
## 861  0.455263158  0.403981107 0.3733602 0.9628942 0.3362545 0.53584359
## 1044 0.454385965  0.403103914 0.3729839 0.9628253 0.3358091 0.53545586
## 845  0.453508772  0.402226721 0.3726083 0.9627561 0.3353643 0.53506869
## 49   0.453508772  0.404790823 0.3732394 0.9645522 0.3377917 0.53612717
## 1283 0.452631579  0.403913630 0.3728643 0.9644860 0.3373503 0.53574007
## 668  0.451754386  0.403036437 0.3724900 0.9644195 0.3369094 0.53535354
## 401  0.450877193  0.402159244 0.3721163 0.9643527 0.3364691 0.53496756
## 1420 0.450000000  0.401282051 0.3717435 0.9642857 0.3360292 0.53458213
## 912  0.449122807  0.400404858 0.3713714 0.9642185 0.3355898 0.53419726
## 261  0.449122807  0.402968961 0.3720000 0.9660377 0.3380377 0.53525180
## 686  0.448245614  0.402091768 0.3716284 0.9659735 0.3376019 0.53486700
## 252  0.447368421  0.401214575 0.3712575 0.9659091 0.3371666 0.53448276
## 1466 0.446491228  0.400337382 0.3708873 0.9658444 0.3367317 0.53409907
## 413  0.445614035  0.399460189 0.3705179 0.9657795 0.3362974 0.53371593
## 467  0.444736842  0.398582996 0.3701493 0.9657143 0.3358635 0.53333333
## 660  0.443859649  0.397705803 0.3697813 0.9656489 0.3354302 0.53295129
## 1276 0.442982456  0.396828610 0.3694141 0.9655832 0.3349973 0.53256979
## 864  0.442105263  0.395951417 0.3690476 0.9655172 0.3345649 0.53218884
## 999  0.441228070  0.395074224 0.3686819 0.9654511 0.3341329 0.53180843
## 860  0.440350877  0.394197031 0.3683168 0.9653846 0.3337014 0.53142857
## 420  0.439473684  0.393319838 0.3679525 0.9653179 0.3332704 0.53104925
## 403  0.438596491  0.392442645 0.3675889 0.9652510 0.3328399 0.53067047
## 1118 0.437719298  0.391565452 0.3672261 0.9651838 0.3324098 0.53029223
## 1025 0.436842105  0.390688259 0.3668639 0.9651163 0.3319802 0.52991453
## 289  0.436842105  0.393252362 0.3674877 0.9669903 0.3344780 0.53096085
## 643  0.435964912  0.392375169 0.3671260 0.9669261 0.3340521 0.53058321
## 1058 0.435087719  0.391497976 0.3667650 0.9668616 0.3336266 0.53020611
## 1467 0.434210526  0.390620783 0.3664047 0.9667969 0.3332016 0.52982955
## 1023 0.433333333  0.389743590 0.3660451 0.9667319 0.3327770 0.52945351
## 55   0.432456140  0.388866397 0.3656863 0.9666667 0.3323529 0.52907801
## 1022 0.431578947  0.387989204 0.3653281 0.9666012 0.3319293 0.52870305
## 1366 0.430701754  0.387112011 0.3649706 0.9665354 0.3315061 0.52832861
## 504  0.429824561  0.386234818 0.3646139 0.9664694 0.3310833 0.52795471
## 1024 0.428947368  0.385357625 0.3642578 0.9664032 0.3306610 0.52758133
## 930  0.428070175  0.384480432 0.3639024 0.9663366 0.3302391 0.52720848
## 1471 0.427192982  0.383603239 0.3635478 0.9662698 0.3298176 0.52683616
## 1182 0.426315789  0.382726046 0.3631938 0.9662028 0.3293966 0.52646436
## 114  0.425438596  0.381848853 0.3628405 0.9661355 0.3289759 0.52609309
## 862  0.424561404  0.380971660 0.3624879 0.9660679 0.3285557 0.52572234
## 59   0.423684211  0.380094467 0.3621359 0.9660000 0.3281359 0.52535211
## 418  0.422807018  0.379217274 0.3617847 0.9659319 0.3277165 0.52498241
## 827  0.421929825  0.378340081 0.3614341 0.9658635 0.3272976 0.52461322
## 1317 0.421052632  0.377462888 0.3610842 0.9657948 0.3268790 0.52424455
## 450  0.420175439  0.376585695 0.3607350 0.9657258 0.3264608 0.52387640
## 513  0.419298246  0.375708502 0.3603865 0.9656566 0.3260430 0.52350877
## 1199 0.419298246  0.378272605 0.3610039 0.9676113 0.3286152 0.52454418
## 1021 0.418421053  0.377395412 0.3606557 0.9675456 0.3282014 0.52417659
## 279  0.417543860  0.376518219 0.3603083 0.9674797 0.3277880 0.52380952
## 516  0.416666667  0.375641026 0.3599615 0.9674134 0.3273749 0.52344297
## 1026 0.415789474  0.374763833 0.3596154 0.9673469 0.3269623 0.52307692
## 951  0.414912281  0.373886640 0.3592699 0.9672802 0.3265501 0.52271139
## 734  0.414035088  0.373009447 0.3589251 0.9672131 0.3261383 0.52234637
## 1126 0.413157895  0.372132254 0.3585810 0.9671458 0.3257268 0.52198186
## 635  0.412280702  0.371255061 0.3582375 0.9670782 0.3253157 0.52161785
## 652  0.411403509  0.370377868 0.3578947 0.9670103 0.3249050 0.52125436
## 515  0.410526316  0.369500675 0.3575526 0.9669421 0.3244947 0.52089136
## 1369 0.409649123  0.368623482 0.3572111 0.9668737 0.3240848 0.52052888
## 310  0.408771930  0.367746289 0.3568702 0.9668050 0.3236752 0.52016690
## 752  0.407894737  0.366869096 0.3565300 0.9667360 0.3232660 0.51980542
## 1225 0.407017544  0.365991903 0.3561905 0.9666667 0.3228571 0.51944444
## 248  0.406140351  0.365114710 0.3558516 0.9665971 0.3224486 0.51908397
## 1124 0.405263158  0.364237517 0.3555133 0.9665272 0.3220405 0.51872399
## 1204 0.404385965  0.363360324 0.3551757 0.9664570 0.3216327 0.51836452
## 1123 0.403508772  0.362483131 0.3548387 0.9663866 0.3212253 0.51800554
## 254  0.402631579  0.361605938 0.3545024 0.9663158 0.3208182 0.51764706
## 1122 0.401754386  0.360728745 0.3541667 0.9662447 0.3204114 0.51728907
## 411  0.400877193  0.359851552 0.3538316 0.9661734 0.3200050 0.51693158
## 1206 0.400000000  0.358974359 0.3534972 0.9661017 0.3195989 0.51657459
## 820  0.399122807  0.358097166 0.3531634 0.9660297 0.3191931 0.51621808
## 747  0.398245614  0.357219973 0.3528302 0.9659574 0.3187876 0.51586207
## 447  0.397368421  0.356342780 0.3524976 0.9658849 0.3183825 0.51550655
## 9    0.396491228  0.355465587 0.3521657 0.9658120 0.3179777 0.51515152
## 1197 0.396491228  0.358029690 0.3527752 0.9678801 0.3206553 0.51617343
## 856  0.395614035  0.357152497 0.3524436 0.9678112 0.3202548 0.51581843
## 72   0.394736842  0.356275304 0.3521127 0.9677419 0.3198546 0.51546392
## 313  0.393859649  0.355398111 0.3517824 0.9676724 0.3194548 0.51510989
## 811  0.392982456  0.354520918 0.3514527 0.9676026 0.3190553 0.51475635
## 896  0.392982456  0.357085020 0.3520599 0.9696970 0.3217569 0.51577503
## 1383 0.392105263  0.356207827 0.3517306 0.9696312 0.3213618 0.51542152
## 1347 0.391228070  0.355330634 0.3514019 0.9695652 0.3209671 0.51506849
## 408  0.390350877  0.354453441 0.3510738 0.9694989 0.3205727 0.51471595
## 990  0.389473684  0.353576248 0.3507463 0.9694323 0.3201786 0.51436389
## 451  0.388596491  0.352699055 0.3504194 0.9693654 0.3197848 0.51401230
## 903  0.387719298  0.351821862 0.3500931 0.9692982 0.3193914 0.51366120
## 449  0.386842105  0.350944669 0.3497674 0.9692308 0.3189982 0.51331058
## 409  0.385964912  0.350067476 0.3494424 0.9691630 0.3186054 0.51296044
## 6    0.385087719  0.349190283 0.3491179 0.9690949 0.3182128 0.51261077
## 415  0.384210526  0.348313090 0.3487941 0.9690265 0.3178206 0.51226158
## 953  0.383333333  0.347435897 0.3484708 0.9689579 0.3174287 0.51191287
## 307  0.382456140  0.346558704 0.3481481 0.9688889 0.3170370 0.51156463
## 406  0.381578947  0.345681511 0.3478261 0.9688196 0.3166457 0.51121686
## 1364 0.380701754  0.344804318 0.3475046 0.9687500 0.3162546 0.51086957
## 419  0.379824561  0.343927126 0.3471837 0.9686801 0.3158638 0.51052274
## 108  0.378947368  0.343049933 0.3468635 0.9686099 0.3154733 0.51017639
## 405  0.378070175  0.342172740 0.3465438 0.9685393 0.3150831 0.50983051
## 132  0.377192982  0.341295547 0.3462247 0.9684685 0.3146931 0.50948509
## 445  0.376315789  0.340418354 0.3459062 0.9683973 0.3143035 0.50914015
## 7    0.375438596  0.339541161 0.3455882 0.9683258 0.3139140 0.50879567
## 412  0.374561404  0.338663968 0.3452709 0.9682540 0.3135249 0.50845166
## 1290 0.373684211  0.337786775 0.3449541 0.9681818 0.3131359 0.50810811
## 1367 0.372807018  0.336909582 0.3446379 0.9681093 0.3127473 0.50776502
## 947  0.371929825  0.336032389 0.3443223 0.9680365 0.3123589 0.50742240
## 312  0.371052632  0.335155196 0.3440073 0.9679634 0.3119707 0.50708024
## 994  0.370175439  0.334278003 0.3436929 0.9678899 0.3115828 0.50673854
## 936  0.369298246  0.333400810 0.3433790 0.9678161 0.3111951 0.50639731
## 19   0.368421053  0.332523617 0.3430657 0.9677419 0.3108076 0.50605653
## 1362 0.367543860  0.331646424 0.3427530 0.9676674 0.3104204 0.50571621
## 900  0.366666667  0.330769231 0.3424408 0.9675926 0.3100334 0.50537634
## 952  0.365789474  0.329892038 0.3421292 0.9675174 0.3096466 0.50503694
## 726  0.364912281  0.329014845 0.3418182 0.9674419 0.3092600 0.50469799
## 1361 0.364035088  0.328137652 0.3415077 0.9673660 0.3088737 0.50435949
## 824  0.363157895  0.327260459 0.3411978 0.9672897 0.3084875 0.50402145
## 417  0.362280702  0.326383266 0.3408885 0.9672131 0.3081016 0.50368386
## 444  0.361403509  0.325506073 0.3405797 0.9671362 0.3077159 0.50334672
## 948  0.360526316  0.324628880 0.3402715 0.9670588 0.3073303 0.50301003
## 314  0.359649123  0.323751687 0.3399638 0.9669811 0.3069450 0.50267380
## 1201 0.359649123  0.326315789 0.3405601 0.9692671 0.3098272 0.50367401
## 500  0.358771930  0.325438596 0.3402527 0.9691943 0.3094470 0.50333778
## 305  0.357894737  0.324561404 0.3399459 0.9691211 0.3090670 0.50300200
## 736  0.357017544  0.323684211 0.3396396 0.9690476 0.3086873 0.50266667
## 1286 0.356140351  0.322807018 0.3393339 0.9689737 0.3083077 0.50233178
## 446  0.355263158  0.321929825 0.3390288 0.9688995 0.3079283 0.50199734
## 193  0.354385965  0.321052632 0.3387242 0.9688249 0.3075491 0.50166334
## 663  0.353508772  0.320175439 0.3384201 0.9687500 0.3071701 0.50132979
## 1526 0.352631579  0.319298246 0.3381166 0.9686747 0.3067913 0.50099668
## 1452 0.351754386  0.318421053 0.3378136 0.9685990 0.3064127 0.50066401
## 1289 0.350877193  0.317543860 0.3375112 0.9685230 0.3060342 0.50033179
## 1291 0.350000000  0.316666667 0.3372093 0.9684466 0.3056559 0.50000000
## 1203 0.349122807  0.315789474 0.3369080 0.9683698 0.3052778 0.49966865
## 629  0.348245614  0.314912281 0.3366071 0.9682927 0.3048998 0.49933775
## 733  0.347368421  0.314035088 0.3363069 0.9682152 0.3045220 0.49900728
## 914  0.346491228  0.313157895 0.3360071 0.9681373 0.3041444 0.49867725
## 968  0.345614035  0.312280702 0.3357079 0.9680590 0.3037669 0.49834765
## 617  0.344736842  0.311403509 0.3354093 0.9679803 0.3033895 0.49801849
## 1    0.343859649  0.310526316 0.3351111 0.9679012 0.3030123 0.49768977
## 691  0.342982456  0.309649123 0.3348135 0.9678218 0.3026353 0.49736148
## 302  0.342105263  0.308771930 0.3345164 0.9677419 0.3022584 0.49703362
## 246  0.341228070  0.307894737 0.3342199 0.9676617 0.3018815 0.49670619
## 330  0.341228070  0.310458839 0.3348096 0.9700748 0.3048844 0.49769585
## 206  0.340350877  0.309581646 0.3345133 0.9700000 0.3045133 0.49736842
## 381  0.340350877  0.312145749 0.3351017 0.9724311 0.3075328 0.49835634
## 1202 0.339473684  0.311268556 0.3348057 0.9723618 0.3071675 0.49802891
## 384  0.339473684  0.313832659 0.3353928 0.9748111 0.3102038 0.49901510
## 755  0.338596491  0.312955466 0.3350970 0.9747475 0.3098445 0.49868766
## 712  0.337719298  0.312078273 0.3348018 0.9746835 0.3094853 0.49836066
## 1222 0.336842105  0.311201080 0.3345070 0.9746193 0.3091263 0.49803408
## 737  0.335964912  0.310323887 0.3342128 0.9745547 0.3087675 0.49770792
## 762  0.335087719  0.309446694 0.3339192 0.9744898 0.3084090 0.49738220
## 292  0.334210526  0.308569501 0.3336260 0.9744246 0.3080505 0.49705690
## 684  0.333333333  0.307692308 0.3333333 0.9743590 0.3076923 0.49673203
## 972  0.332456140  0.306815115 0.3330412 0.9742931 0.3073343 0.49640758
## 537  0.331578947  0.305937922 0.3327496 0.9742268 0.3069764 0.49608355
## 535  0.330701754  0.305060729 0.3324584 0.9741602 0.3066186 0.49575995
## 828  0.329824561  0.304183536 0.3321678 0.9740933 0.3062611 0.49543677
## 1288 0.328947368  0.303306343 0.3318777 0.9740260 0.3059037 0.49511401
## 825  0.328070175  0.302429150 0.3315881 0.9739583 0.3055465 0.49479167
## 1253 0.327192982  0.301551957 0.3312990 0.9738903 0.3051894 0.49446975
## 454  0.326315789  0.300674764 0.3310105 0.9738220 0.3048324 0.49414824
## 920  0.325438596  0.299797571 0.3307224 0.9737533 0.3044756 0.49382716
## 1153 0.324561404  0.298920378 0.3304348 0.9736842 0.3041190 0.49350649
## 1254 0.323684211  0.298043185 0.3301477 0.9736148 0.3037625 0.49318624
## 1001 0.322807018  0.297165992 0.3298611 0.9735450 0.3034061 0.49286641
## 257  0.322807018  0.299730094 0.3304423 0.9761273 0.3065696 0.49384316
## 351  0.321929825  0.298852901 0.3301560 0.9760638 0.3062198 0.49352332
## 1128 0.321052632  0.297975709 0.3298701 0.9760000 0.3058701 0.49320388
## 105  0.320175439  0.297098516 0.3295848 0.9759358 0.3055206 0.49288486
## 620  0.319298246  0.296221323 0.3292999 0.9758713 0.3051712 0.49256626
## 541  0.318421053  0.295344130 0.3290155 0.9758065 0.3048220 0.49224806
## 1183 0.317543860  0.294466937 0.3287317 0.9757412 0.3044729 0.49193028
## 1453 0.316666667  0.293589744 0.3284483 0.9756757 0.3041240 0.49161290
## 1177 0.315789474  0.292712551 0.3281654 0.9756098 0.3037751 0.49129594
## 630  0.314912281  0.291835358 0.3278830 0.9755435 0.3034264 0.49097938
## 1515 0.314035088  0.290958165 0.3276010 0.9754768 0.3030779 0.49066323
## 249  0.313157895  0.290080972 0.3273196 0.9754098 0.3027294 0.49034749
## 47   0.312280702  0.289203779 0.3270386 0.9753425 0.3023811 0.49003215
## 1176 0.311403509  0.288326586 0.3267581 0.9752747 0.3020329 0.48971722
## 1219 0.310526316  0.287449393 0.3264781 0.9752066 0.3016848 0.48940270
## 23   0.310526316  0.290013495 0.3270548 0.9779006 0.3049553 0.49037227
## 115  0.309649123  0.289136302 0.3267750 0.9778393 0.3046144 0.49005773
## 1301 0.308771930  0.288259109 0.3264957 0.9777778 0.3042735 0.48974359
## 773  0.307894737  0.287381916 0.3262169 0.9777159 0.3039328 0.48942985
## 1244 0.307017544  0.286504723 0.3259386 0.9776536 0.3035922 0.48911652
## 1307 0.306140351  0.285627530 0.3256607 0.9775910 0.3032517 0.48880358
## 915  0.305263158  0.284750337 0.3253833 0.9775281 0.3029114 0.48849105
## 1327 0.304385965  0.283873144 0.3251064 0.9774648 0.3025712 0.48817891
## 81   0.304385965  0.286437247 0.3256803 0.9802260 0.3059063 0.48914432
## 1371 0.303508772  0.285560054 0.3254036 0.9801700 0.3055735 0.48883216
## 823  0.302631579  0.284682861 0.3251273 0.9801136 0.3052410 0.48852041
## 207  0.301754386  0.283805668 0.3248516 0.9800570 0.3049085 0.48820905
## 303  0.300877193  0.282928475 0.3245763 0.9800000 0.3045763 0.48789809
## 251  0.300000000  0.282051282 0.3243014 0.9799427 0.3042441 0.48758752
## 355  0.299122807  0.281174089 0.3240271 0.9798851 0.3039121 0.48727735
## 1324 0.298245614  0.280296896 0.3237532 0.9798271 0.3035803 0.48696758
## 621  0.297368421  0.279419703 0.3234797 0.9797688 0.3032485 0.48665820
## 1524 0.296491228  0.278542510 0.3232068 0.9797101 0.3029169 0.48634921
## 464  0.295614035  0.277665317 0.3229342 0.9796512 0.3025854 0.48604061
## 965  0.294736842  0.276788124 0.3226622 0.9795918 0.3022540 0.48573240
## 1100 0.293859649  0.275910931 0.3223906 0.9795322 0.3019227 0.48542459
## 1057 0.292982456  0.275033738 0.3221194 0.9794721 0.3015916 0.48511716
## 1444 0.292105263  0.274156545 0.3218487 0.9794118 0.3012605 0.48481013
## 1111 0.291228070  0.273279352 0.3215785 0.9793510 0.3009295 0.48450348
## 1211 0.290350877  0.272402159 0.3213087 0.9792899 0.3005987 0.48419722
## 826  0.289473684  0.271524966 0.3210394 0.9792285 0.3002679 0.48389135
## 1528 0.288596491  0.270647773 0.3207705 0.9791667 0.2999372 0.48358586
## 1102 0.287719298  0.269770580 0.3205021 0.9791045 0.2996066 0.48328076
## 280  0.287719298  0.272334683 0.3210702 0.9820359 0.3031062 0.48423707
## 113  0.286842105  0.271457490 0.3208020 0.9819820 0.3027840 0.48393195
## 508  0.285964912  0.270580297 0.3205342 0.9819277 0.3024619 0.48362720
## 639  0.285087719  0.269703104 0.3202669 0.9818731 0.3021400 0.48332284
## 1148 0.284210526  0.268825911 0.3200000 0.9818182 0.3018182 0.48301887
## 1484 0.283333333  0.267948718 0.3197336 0.9817629 0.3014965 0.48271527
## 1035 0.282456140  0.267071525 0.3194676 0.9817073 0.3011749 0.48241206
## 1138 0.281578947  0.266194332 0.3192020 0.9816514 0.3008534 0.48210923
## 1004 0.280701754  0.265317139 0.3189369 0.9815951 0.3005320 0.48180678
## 1139 0.279824561  0.264439946 0.3186722 0.9815385 0.3002107 0.48150470
## 1209 0.278947368  0.263562753 0.3184080 0.9814815 0.2998894 0.48120301
## 1401 0.278070175  0.262685560 0.3181442 0.9814241 0.2995683 0.48090169
## 1473 0.277192982  0.261808367 0.3178808 0.9813665 0.2992473 0.48060075
## 1434 0.276315789  0.260931174 0.3176179 0.9813084 0.2989263 0.48030019
## 1073 0.275438596  0.260053981 0.3173554 0.9812500 0.2986054 0.48000000
## 1338 0.274561404  0.259176788 0.3170933 0.9811912 0.2982845 0.47970019
## 1146 0.273684211  0.258299595 0.3168317 0.9811321 0.2979638 0.47940075
## 304  0.272807018  0.257422402 0.3165705 0.9810726 0.2976430 0.47910168
## 696  0.271929825  0.256545209 0.3163097 0.9810127 0.2973224 0.47880299
## 1308 0.271052632  0.255668016 0.3160494 0.9809524 0.2970018 0.47850467
## 1518 0.270175439  0.254790823 0.3157895 0.9808917 0.2966812 0.47820672
## 730  0.269298246  0.253913630 0.3155300 0.9808307 0.2963607 0.47790915
## 758  0.268421053  0.253036437 0.3152709 0.9807692 0.2960402 0.47761194
## 1229 0.267543860  0.252159244 0.3150123 0.9807074 0.2957197 0.47731510
## 492  0.266666667  0.251282051 0.3147541 0.9806452 0.2953993 0.47701863
## 716  0.265789474  0.250404858 0.3144963 0.9805825 0.2950788 0.47672253
## 1435 0.264912281  0.249527665 0.3142390 0.9805195 0.2947584 0.47642680
## 106  0.264035088  0.248650472 0.3139820 0.9804560 0.2944380 0.47613143
## 659  0.263157895  0.247773279 0.3137255 0.9803922 0.2941176 0.47583643
## 1280 0.262280702  0.246896086 0.3134694 0.9803279 0.2937973 0.47554180
## 799  0.261403509  0.246018893 0.3132137 0.9802632 0.2934769 0.47524752
## 989  0.260526316  0.245141700 0.3129584 0.9801980 0.2931565 0.47495362
## 112  0.259649123  0.244264507 0.3127036 0.9801325 0.2928360 0.47466007
## 1310 0.258771930  0.243387314 0.3124491 0.9800664 0.2925156 0.47436689
## 501  0.257894737  0.242510121 0.3121951 0.9800000 0.2921951 0.47407407
## 1234 0.257017544  0.241632928 0.3119415 0.9799331 0.2918746 0.47378162
## 877  0.256140351  0.240755735 0.3116883 0.9798658 0.2915541 0.47348952
## 221  0.256140351  0.243319838 0.3122466 0.9831650 0.2954115 0.47443007
## 1486 0.255263158  0.242442645 0.3119935 0.9831081 0.2951016 0.47413793
## 291  0.254385965  0.241565452 0.3117409 0.9830508 0.2947917 0.47384615
## 1340 0.253508772  0.240688259 0.3114887 0.9829932 0.2944819 0.47355474
## 809  0.252631579  0.239811066 0.3112369 0.9829352 0.2941720 0.47326368
## 1007 0.251754386  0.238933873 0.3109855 0.9828767 0.2938622 0.47297297
## 1216 0.250877193  0.238056680 0.3107345 0.9828179 0.2935523 0.47268263
## 466  0.250000000  0.237179487 0.3104839 0.9827586 0.2932425 0.47239264
## 840  0.249122807  0.236302294 0.3102337 0.9826990 0.2929326 0.47210300
## 1488 0.248245614  0.235425101 0.3099839 0.9826389 0.2926228 0.47181373
## 1037 0.247368421  0.234547908 0.3097345 0.9825784 0.2923129 0.47152480
## 519  0.246491228  0.233670715 0.3094855 0.9825175 0.2920030 0.47123623
## 1275 0.245614035  0.232793522 0.3092369 0.9824561 0.2916931 0.47094801
## 1432 0.244736842  0.231916329 0.3089888 0.9823944 0.2913831 0.47066015
## 606  0.243859649  0.231039136 0.3087410 0.9823322 0.2910731 0.47037263
## 800  0.242982456  0.230161943 0.3084936 0.9822695 0.2907631 0.47008547
## 1303 0.242105263  0.229284750 0.3082466 0.9822064 0.2904530 0.46979866
## 918  0.241228070  0.228407557 0.3080000 0.9821429 0.2901429 0.46951220
## 1436 0.240350877  0.227530364 0.3077538 0.9820789 0.2898327 0.46922608
## 875  0.239473684  0.226653171 0.3075080 0.9820144 0.2895224 0.46894032
## 54   0.238596491  0.225775978 0.3072626 0.9819495 0.2892120 0.46865490
## 116  0.237719298  0.224898785 0.3070175 0.9818841 0.2889016 0.46836983
## 586  0.236842105  0.224021592 0.3067729 0.9818182 0.2885911 0.46808511
## 493  0.235964912  0.223144399 0.3065287 0.9817518 0.2882805 0.46780073
## 607  0.235087719  0.222267206 0.3062848 0.9816850 0.2879698 0.46751670
## 759  0.234210526  0.221390013 0.3060413 0.9816176 0.2876590 0.46723301
## 295  0.233333333  0.220512821 0.3057983 0.9815498 0.2873481 0.46694967
## 104  0.232456140  0.219635628 0.3055556 0.9814815 0.2870370 0.46666667
## 1179 0.231578947  0.218758435 0.3053132 0.9814126 0.2867259 0.46638401
## 589  0.230701754  0.217881242 0.3050713 0.9813433 0.2864146 0.46610169
## 1346 0.229824561  0.217004049 0.3048298 0.9812734 0.2861032 0.46581972
## 174  0.228947368  0.216126856 0.3045886 0.9812030 0.2857916 0.46553809
## 549  0.228070175  0.215249663 0.3043478 0.9811321 0.2854799 0.46525680
## 44   0.227192982  0.214372470 0.3041074 0.9810606 0.2851680 0.46497585
## 1233 0.226315789  0.213495277 0.3038674 0.9809886 0.2848560 0.46469523
## 605  0.225438596  0.212618084 0.3036278 0.9809160 0.2845438 0.46441496
## 465  0.224561404  0.211740891 0.3033885 0.9808429 0.2842314 0.46413502
## 913  0.223684211  0.210863698 0.3031496 0.9807692 0.2839188 0.46385542
## 1083 0.223684211  0.213427800 0.3036979 0.9845560 0.2882539 0.46478025
## 536  0.222807018  0.212550607 0.3034591 0.9844961 0.2879552 0.46450060
## 1409 0.221929825  0.211673414 0.3032207 0.9844358 0.2876565 0.46422129
## 309  0.221052632  0.210796221 0.3029827 0.9843750 0.2873577 0.46394231
## 1416 0.220175439  0.209919028 0.3027451 0.9843137 0.2870588 0.46366366
## 1415 0.219298246  0.209041835 0.3025078 0.9842520 0.2867598 0.46338535
## 1077 0.218421053  0.208164642 0.3022709 0.9841897 0.2864607 0.46310738
## 143  0.218421053  0.210728745 0.3028169 0.9880952 0.2909121 0.46402878
## 166  0.217543860  0.209851552 0.3025801 0.9880478 0.2906279 0.46375075
## 1470 0.216666667  0.208974359 0.3023438 0.9880000 0.2903437 0.46347305
## 1381 0.215789474  0.208097166 0.3021077 0.9879518 0.2900595 0.46319569
## 1061 0.214912281  0.207219973 0.3018721 0.9879032 0.2897753 0.46291866
## 1231 0.214035088  0.206342780 0.3016368 0.9878543 0.2894910 0.46264196
## 880  0.213157895  0.205465587 0.3014019 0.9878049 0.2892067 0.46236559
## 1417 0.212280702  0.204588394 0.3011673 0.9877551 0.2889224 0.46208955
## 1378 0.211403509  0.203711201 0.3009331 0.9877049 0.2886380 0.46181384
## 194  0.210526316  0.202834008 0.3006993 0.9876543 0.2883536 0.46153846
## 1344 0.209649123  0.201956815 0.3004658 0.9876033 0.2880691 0.46126341
## 327  0.208771930  0.201079622 0.3002327 0.9875519 0.2877846 0.46098868
## 551  0.207894737  0.200202429 0.3000000 0.9875000 0.2875000 0.46071429
## 1075 0.207017544  0.199325236 0.2997676 0.9874477 0.2872153 0.46044021
## 560  0.206140351  0.198448043 0.2995356 0.9873950 0.2869306 0.46016647
## 645  0.205263158  0.197570850 0.2993039 0.9873418 0.2866457 0.45989305
## 1080 0.204385965  0.196693657 0.2990726 0.9872881 0.2863608 0.45961995
## 1413 0.203508772  0.195816464 0.2988417 0.9872340 0.2860757 0.45934718
## 1348 0.202631579  0.194939271 0.2986111 0.9871795 0.2857906 0.45907473
## 1279 0.201754386  0.194062078 0.2983809 0.9871245 0.2855053 0.45880261
## 881  0.200877193  0.193184885 0.2981510 0.9870690 0.2852200 0.45853081
## 1490 0.200000000  0.192307692 0.2979215 0.9870130 0.2849345 0.45825933
## 150  0.199122807  0.191430499 0.2976923 0.9869565 0.2846488 0.45798817
## 1412 0.198245614  0.190553306 0.2974635 0.9868996 0.2843631 0.45771733
## 805  0.197368421  0.189676113 0.2972350 0.9868421 0.2840771 0.45744681
## 167  0.196491228  0.188798920 0.2970069 0.9867841 0.2837910 0.45717661
## 935  0.195614035  0.187921727 0.2967791 0.9867257 0.2835048 0.45690673
## 593  0.194736842  0.187044534 0.2965517 0.9866667 0.2832184 0.45663717
## 1410 0.193859649  0.186167341 0.2963247 0.9866071 0.2829318 0.45636792
## 79   0.192982456  0.185290148 0.2960979 0.9865471 0.2826450 0.45609900
## 1109 0.192105263  0.184412955 0.2958716 0.9864865 0.2823580 0.45583039
## 199  0.191228070  0.183535762 0.2956455 0.9864253 0.2820709 0.45556210
## 1414 0.190350877  0.182658570 0.2954198 0.9863636 0.2817835 0.45529412
## 646  0.189473684  0.181781377 0.2951945 0.9863014 0.2814959 0.45502646
## 577  0.188596491  0.180904184 0.2949695 0.9862385 0.2812080 0.45475911
## 357  0.187719298  0.180026991 0.2947449 0.9861751 0.2809200 0.45449207
## 1328 0.186842105  0.179149798 0.2945205 0.9861111 0.2806317 0.45422535
## 628  0.185964912  0.178272605 0.2942966 0.9860465 0.2803431 0.45395894
## 756  0.185087719  0.177395412 0.2940729 0.9859813 0.2800543 0.45369285
## 806  0.184210526  0.176518219 0.2938497 0.9859155 0.2797652 0.45342707
## 463  0.183333333  0.175641026 0.2936267 0.9858491 0.2794758 0.45316159
## 1108 0.182456140  0.174763833 0.2934041 0.9857820 0.2791861 0.45289643
## 358  0.181578947  0.173886640 0.2931818 0.9857143 0.2788961 0.45263158
## 552  0.180701754  0.173009447 0.2929599 0.9856459 0.2786058 0.45236704
## 461  0.179824561  0.172132254 0.2927383 0.9855769 0.2783152 0.45210280
## 359  0.178947368  0.171255061 0.2925170 0.9855072 0.2780243 0.45183888
## 1493 0.178070175  0.170377868 0.2922961 0.9854369 0.2777330 0.45157526
## 361  0.177192982  0.169500675 0.2920755 0.9853659 0.2774413 0.45131195
## 1323 0.176315789  0.168623482 0.2918552 0.9852941 0.2771493 0.45104895
## 1326 0.175438596  0.167746289 0.2916353 0.9852217 0.2768569 0.45078626
## 1345 0.174561404  0.166869096 0.2914157 0.9851485 0.2765642 0.45052386
## 499  0.173684211  0.165991903 0.2911964 0.9850746 0.2762710 0.45026178
## 627  0.172807018  0.165114710 0.2909774 0.9850000 0.2759774 0.45000000
## 356  0.171929825  0.164237517 0.2907588 0.9849246 0.2756835 0.44973852
## 822  0.171052632  0.163360324 0.2905405 0.9848485 0.2753890 0.44947735
## 899  0.170175439  0.162483131 0.2903226 0.9847716 0.2750942 0.44921648
## 644  0.169298246  0.161605938 0.2901049 0.9846939 0.2747988 0.44895592
## 360  0.168421053  0.160728745 0.2898876 0.9846154 0.2745030 0.44869565
## 852  0.167543860  0.159851552 0.2896707 0.9845361 0.2742067 0.44843569
## 754  0.166666667  0.158974359 0.2894540 0.9844560 0.2739100 0.44817603
## 1321 0.165789474  0.158097166 0.2892377 0.9843750 0.2736127 0.44791667
## 720  0.164912281  0.157219973 0.2890217 0.9842932 0.2733149 0.44765761
## 165  0.164035088  0.156342780 0.2888060 0.9842105 0.2730165 0.44739884
## 717  0.163157895  0.155465587 0.2885906 0.9841270 0.2727176 0.44714038
## 642  0.162280702  0.154588394 0.2883756 0.9840426 0.2724181 0.44688222
## 387  0.162280702  0.157152497 0.2889054 0.9893048 0.2782102 0.44777842
## 350  0.161403509  0.156275304 0.2886905 0.9892473 0.2779378 0.44752018
## 1322 0.160526316  0.155398111 0.2884758 0.9891892 0.2776650 0.44726225
## 1143 0.159649123  0.154520918 0.2882615 0.9891304 0.2773920 0.44700461
## 1145 0.158771930  0.153643725 0.2880475 0.9890710 0.2771186 0.44674727
## 970  0.157894737  0.152766532 0.2878338 0.9890110 0.2768448 0.44649022
## 1447 0.157017544  0.151889339 0.2876205 0.9889503 0.2765707 0.44623347
## 512  0.156140351  0.151012146 0.2874074 0.9888889 0.2762963 0.44597701
## 1142 0.155263158  0.150134953 0.2871947 0.9888268 0.2760215 0.44572085
## 876  0.154385965  0.149257760 0.2869822 0.9887640 0.2757463 0.44546498
## 1125 0.153508772  0.148380567 0.2867701 0.9887006 0.2754707 0.44520941
## 636  0.152631579  0.147503374 0.2865583 0.9886364 0.2751947 0.44495413
## 245  0.151754386  0.146626181 0.2863469 0.9885714 0.2749183 0.44469914
## 772  0.150877193  0.145748988 0.2861357 0.9885057 0.2746414 0.44444444
## 597  0.150000000  0.144871795 0.2859248 0.9884393 0.2743641 0.44419004
## 1053 0.149122807  0.143994602 0.2857143 0.9883721 0.2740864 0.44393593
## 1121 0.148245614  0.143117409 0.2855040 0.9883041 0.2738081 0.44368210
## 1072 0.147368421  0.142240216 0.2852941 0.9882353 0.2735294 0.44342857
## 1074 0.146491228  0.141363023 0.2850845 0.9881657 0.2732502 0.44317533
## 664  0.145614035  0.140485830 0.2848752 0.9880952 0.2729704 0.44292237
## 1380 0.144736842  0.139608637 0.2846662 0.9880240 0.2726901 0.44266971
## 559  0.143859649  0.138731444 0.2844575 0.9879518 0.2724093 0.44241733
## 718  0.142982456  0.137854251 0.2842491 0.9878788 0.2721279 0.44216524
## 70   0.142105263  0.136977058 0.2840410 0.9878049 0.2718459 0.44191344
## 604  0.141228070  0.136099865 0.2838332 0.9877301 0.2715633 0.44166192
## 539  0.140350877  0.135222672 0.2836257 0.9876543 0.2712801 0.44141069
## 316  0.139473684  0.134345479 0.2834186 0.9875776 0.2709962 0.44115975
## 705  0.138596491  0.133468286 0.2832117 0.9875000 0.2707117 0.44090909
## 966  0.137719298  0.132591093 0.2830051 0.9874214 0.2704265 0.44065872
## 588  0.136842105  0.131713900 0.2827988 0.9873418 0.2701406 0.44040863
## 1230 0.135964912  0.130836707 0.2825929 0.9872611 0.2698540 0.44015882
## 917  0.135087719  0.129959514 0.2823872 0.9871795 0.2695667 0.43990930
## 1165 0.134210526  0.129082321 0.2821818 0.9870968 0.2692786 0.43966006
## 529  0.133333333  0.128205128 0.2819767 0.9870130 0.2689897 0.43941110
## 50   0.132456140  0.127327935 0.2817720 0.9869281 0.2687001 0.43916242
## 798  0.131578947  0.126450742 0.2815675 0.9868421 0.2684096 0.43891403
## 557  0.130701754  0.125573549 0.2813633 0.9867550 0.2681183 0.43866591
## 941  0.129824561  0.124696356 0.2811594 0.9866667 0.2678261 0.43841808
## 1156 0.128947368  0.123819163 0.2809558 0.9865772 0.2675330 0.43817053
## 1379 0.128070175  0.122941970 0.2807525 0.9864865 0.2672390 0.43792325
## 739  0.127192982  0.122064777 0.2805495 0.9863946 0.2669441 0.43767625
## 1403 0.126315789  0.121187584 0.2803468 0.9863014 0.2666482 0.43742954
## 1147 0.125438596  0.120310391 0.2801444 0.9862069 0.2663513 0.43718310
## 438  0.124561404  0.119433198 0.2799423 0.9861111 0.2660534 0.43693694
## 619  0.123684211  0.118556005 0.2797404 0.9860140 0.2657544 0.43669105
## 1166 0.122807018  0.117678812 0.2795389 0.9859155 0.2654544 0.43644544
## 843  0.121929825  0.116801619 0.2793377 0.9858156 0.2651533 0.43620011
## 129  0.121052632  0.115924426 0.2791367 0.9857143 0.2648510 0.43595506
## 929  0.120175439  0.115047233 0.2789360 0.9856115 0.2645475 0.43571028
## 590  0.119298246  0.114170040 0.2787356 0.9855072 0.2642429 0.43546577
## 719  0.118421053  0.113292848 0.2785355 0.9854015 0.2639370 0.43522154
## 1149 0.117543860  0.112415655 0.2783357 0.9852941 0.2636298 0.43497758
## 1339 0.116666667  0.111538462 0.2781362 0.9851852 0.2633214 0.43473389
## 667  0.115789474  0.110661269 0.2779370 0.9850746 0.2630116 0.43449048
## 658  0.114912281  0.109784076 0.2777380 0.9849624 0.2627004 0.43424734
## 183  0.114035088  0.108906883 0.2775393 0.9848485 0.2623878 0.43400447
## 884  0.114035088  0.111470985 0.2780558 0.9923664 0.2704222 0.43487982
## 841  0.113157895  0.110593792 0.2778571 0.9923077 0.2701648 0.43463687
## 1523 0.112280702  0.109716599 0.2776588 0.9922481 0.2699069 0.43439419
## 1525 0.111403509  0.108839406 0.2774608 0.9921875 0.2696483 0.43415179
## 1455 0.110526316  0.107962213 0.2772630 0.9921260 0.2693890 0.43390965
## 1465 0.109649123  0.107085020 0.2770655 0.9920635 0.2691290 0.43366778
## 971  0.108771930  0.106207827 0.2768683 0.9920000 0.2688683 0.43342618
## 665  0.107894737  0.105330634 0.2766714 0.9919355 0.2686069 0.43318486
## 558  0.107017544  0.104453441 0.2764748 0.9918699 0.2683447 0.43294380
## 1489 0.106140351  0.103576248 0.2762784 0.9918033 0.2680817 0.43270300
## 743  0.105263158  0.102699055 0.2760823 0.9917355 0.2678179 0.43246248
## 699  0.104385965  0.101821862 0.2758865 0.9916667 0.2675532 0.43222222
## 1385 0.103508772  0.100944669 0.2756910 0.9915966 0.2672876 0.43198223
## 813  0.102631579  0.100067476 0.2754958 0.9915254 0.2670212 0.43174251
## 1218 0.101754386  0.099190283 0.2753008 0.9914530 0.2667538 0.43150305
## 1433 0.100877193  0.098313090 0.2751061 0.9913793 0.2664854 0.43126386
## 1038 0.100000000  0.097435897 0.2749117 0.9913043 0.2662160 0.43102493
## 707  0.099122807  0.096558704 0.2747175 0.9912281 0.2659456 0.43078627
## 4    0.098245614  0.095681511 0.2745236 0.9911504 0.2656741 0.43054787
## 844  0.097368421  0.094804318 0.2743300 0.9910714 0.2654015 0.43030973
## 1213 0.096491228  0.093927126 0.2741367 0.9909910 0.2651277 0.43007186
## 1217 0.095614035  0.093049933 0.2739437 0.9909091 0.2648528 0.42983425
## 819  0.094736842  0.092172740 0.2737509 0.9908257 0.2645766 0.42959691
## 1446 0.093859649  0.091295547 0.2735584 0.9907407 0.2642991 0.42935982
## 1170 0.092982456  0.090418354 0.2733661 0.9906542 0.2640203 0.42912300
## 932  0.092105263  0.089541161 0.2731742 0.9905660 0.2637402 0.42888644
## 1274 0.091228070  0.088663968 0.2729825 0.9904762 0.2634586 0.42865014
## 505  0.090350877  0.087786775 0.2727910 0.9903846 0.2631756 0.42841410
## 776  0.090350877  0.090350877 0.2733006 1.0000000 0.2733006 0.42927903
## 1043 0.089473684  0.089473684 0.2731092 1.0000000 0.2731092 0.42904290
## 1169 0.088596491  0.088596491 0.2729181 1.0000000 0.2729181 0.42880704
## 1003 0.087719298  0.087719298 0.2727273 1.0000000 0.2727273 0.42857143
## 1386 0.086842105  0.086842105 0.2725367 1.0000000 0.2725367 0.42833608
## 701  0.085964912  0.085964912 0.2723464 1.0000000 0.2723464 0.42810099
## 443  0.085087719  0.085087719 0.2721563 1.0000000 0.2721563 0.42786615
## 1251 0.084210526  0.084210526 0.2719665 1.0000000 0.2719665 0.42763158
## 698  0.083333333  0.083333333 0.2717770 1.0000000 0.2717770 0.42739726
## 468  0.082456140  0.082456140 0.2715877 1.0000000 0.2715877 0.42716320
## 1522 0.081578947  0.081578947 0.2713987 1.0000000 0.2713987 0.42692939
## 695  0.080701754  0.080701754 0.2712100 1.0000000 0.2712100 0.42669584
## 1516 0.079824561  0.079824561 0.2710215 1.0000000 0.2710215 0.42646255
## 767  0.078947368  0.078947368 0.2708333 1.0000000 0.2708333 0.42622951
## 460  0.078070175  0.078070175 0.2706454 1.0000000 0.2706454 0.42599672
## 1519 0.077192982  0.077192982 0.2704577 1.0000000 0.2704577 0.42576419
## 1036 0.076315789  0.076315789 0.2702703 1.0000000 0.2702703 0.42553191
## 1210 0.075438596  0.075438596 0.2700831 1.0000000 0.2700831 0.42529989
## 1312 0.074561404  0.074561404 0.2698962 1.0000000 0.2698962 0.42506812
## 1164 0.073684211  0.073684211 0.2697095 1.0000000 0.2697095 0.42483660
## 40   0.072807018  0.072807018 0.2695232 1.0000000 0.2695232 0.42460533
## 638  0.071929825  0.071929825 0.2693370 1.0000000 0.2693370 0.42437432
## 1250 0.071052632  0.071052632 0.2691511 1.0000000 0.2691511 0.42414356
## 1257 0.070175439  0.070175439 0.2689655 1.0000000 0.2689655 0.42391304
## 205  0.069298246  0.069298246 0.2687802 1.0000000 0.2687802 0.42368278
## 1000 0.068421053  0.068421053 0.2685950 1.0000000 0.2685950 0.42345277
## 416  0.067543860  0.067543860 0.2684102 1.0000000 0.2684102 0.42322301
## 1167 0.066666667  0.066666667 0.2682256 1.0000000 0.2682256 0.42299349
## 1185 0.065789474  0.065789474 0.2680412 1.0000000 0.2680412 0.42276423
## 503  0.064912281  0.064912281 0.2678571 1.0000000 0.2678571 0.42253521
## 1256 0.064035088  0.064035088 0.2676733 1.0000000 0.2676733 0.42230644
## 1184 0.063157895  0.063157895 0.2674897 1.0000000 0.2674897 0.42207792
## 1249 0.062280702  0.062280702 0.2673064 1.0000000 0.2673064 0.42184965
## 594  0.061403509  0.061403509 0.2671233 1.0000000 0.2671233 0.42162162
## 1163 0.060526316  0.060526316 0.2669405 1.0000000 0.2669405 0.42139384
## 1220 0.059649123  0.059649123 0.2667579 1.0000000 0.2667579 0.42116631
## 697  0.058771930  0.058771930 0.2665755 1.0000000 0.2665755 0.42093902
## 293  0.057894737  0.057894737 0.2663934 1.0000000 0.2663934 0.42071197
## 1006 0.057017544  0.057017544 0.2662116 1.0000000 0.2662116 0.42048518
## 561  0.056140351  0.056140351 0.2660300 1.0000000 0.2660300 0.42025862
## 587  0.055263158  0.055263158 0.2658487 1.0000000 0.2658487 0.42003231
## 731  0.054385965  0.054385965 0.2656676 1.0000000 0.2656676 0.41980624
## 808  0.053508772  0.053508772 0.2654867 1.0000000 0.2654867 0.41958042
## 1277 0.052631579  0.052631579 0.2653061 1.0000000 0.2653061 0.41935484
## 97   0.051754386  0.051754386 0.2651258 1.0000000 0.2651258 0.41912950
## 1461 0.050877193  0.050877193 0.2649457 1.0000000 0.2649457 0.41890440
## 641  0.050000000  0.050000000 0.2647658 1.0000000 0.2647658 0.41867955
## 1188 0.049122807  0.049122807 0.2645862 1.0000000 0.2645862 0.41845494
## 1454 0.048245614  0.048245614 0.2644068 1.0000000 0.2644068 0.41823056
## 969  0.047368421  0.047368421 0.2642276 1.0000000 0.2642276 0.41800643
## 1002 0.046491228  0.046491228 0.2640487 1.0000000 0.2640487 0.41778254
## 1491 0.045614035  0.045614035 0.2638701 1.0000000 0.2638701 0.41755889
## 1311 0.044736842  0.044736842 0.2636917 1.0000000 0.2636917 0.41733547
## 1302 0.043859649  0.043859649 0.2635135 1.0000000 0.2635135 0.41711230
## 883  0.042982456  0.042982456 0.2633356 1.0000000 0.2633356 0.41688936
## 988  0.042105263  0.042105263 0.2631579 1.0000000 0.2631579 0.41666667
## 1224 0.041228070  0.041228070 0.2629804 1.0000000 0.2629804 0.41644421
## 1187 0.040350877  0.040350877 0.2628032 1.0000000 0.2628032 0.41622199
## 735  0.039473684  0.039473684 0.2626263 1.0000000 0.2626263 0.41600000
## 859  0.038596491  0.038596491 0.2624495 1.0000000 0.2624495 0.41577825
## 1047 0.037719298  0.037719298 0.2622730 1.0000000 0.2622730 0.41555674
## 905  0.036842105  0.036842105 0.2620968 1.0000000 0.2620968 0.41533546
## 740  0.035964912  0.035964912 0.2619208 1.0000000 0.2619208 0.41511442
## 1255 0.035087719  0.035087719 0.2617450 1.0000000 0.2617450 0.41489362
## 634  0.034210526  0.034210526 0.2615694 1.0000000 0.2615694 0.41467305
## 1384 0.033333333  0.033333333 0.2613941 1.0000000 0.2613941 0.41445271
## 850  0.031578947  0.031578947 0.2610442 1.0000000 0.2610442 0.41401274
## 878  0.031578947  0.031578947 0.2610442 1.0000000 0.2610442 0.41401274
## 182  0.030701754  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310
## 1360 0.029824561  0.029824561 0.2606952 1.0000000 0.2606952 0.41357370
## 1354 0.028947368  0.028947368 0.2605210 1.0000000 0.2605210 0.41335453
## 1079 0.028070175  0.028070175 0.2603471 1.0000000 0.2603471 0.41313559
## 301  0.027192982  0.027192982 0.2601734 1.0000000 0.2601734 0.41291689
## 441  0.026315789  0.026315789 0.2600000 1.0000000 0.2600000 0.41269841
## 1101 0.025438596  0.025438596 0.2598268 1.0000000 0.2598268 0.41248017
## 729  0.024561404  0.024561404 0.2596538 1.0000000 0.2596538 0.41226216
## 1325 0.023684211  0.023684211 0.2594810 1.0000000 0.2594810 0.41204437
## 576  0.022807018  0.022807018 0.2593085 1.0000000 0.2593085 0.41182682
## 766  0.021929825  0.021929825 0.2591362 1.0000000 0.2591362 0.41160950
## 102  0.021052632  0.021052632 0.2589641 1.0000000 0.2589641 0.41139241
## 57   0.020175439  0.020175439 0.2587923 1.0000000 0.2587923 0.41117554
## 748  0.019298246  0.019298246 0.2586207 1.0000000 0.2586207 0.41095890
## 865  0.018421053  0.018421053 0.2584493 1.0000000 0.2584493 0.41074250
## 13   0.017543860  0.017543860 0.2582781 1.0000000 0.2582781 0.41052632
## 1081 0.016666667  0.016666667 0.2581072 1.0000000 0.2581072 0.41031036
## 306  0.015789474  0.015789474 0.2579365 1.0000000 0.2579365 0.41009464
## 1431 0.014912281  0.014912281 0.2577660 1.0000000 0.2577660 0.40987914
## 916  0.014035088  0.014035088 0.2575958 1.0000000 0.2575958 0.40966387
## 200  0.013157895  0.013157895 0.2574257 1.0000000 0.2574257 0.40944882
## 1309 0.012280702  0.012280702 0.2572559 1.0000000 0.2572559 0.40923400
## 35   0.011403509  0.011403509 0.2570864 1.0000000 0.2570864 0.40901940
## 1418 0.010526316  0.010526316 0.2569170 1.0000000 0.2569170 0.40880503
## 1019 0.009649123  0.009649123 0.2567479 1.0000000 0.2567479 0.40859089
## 204  0.008771930  0.008771930 0.2565789 1.0000000 0.2565789 0.40837696
## 1059 0.007894737  0.007894737 0.2564103 1.0000000 0.2564103 0.40816327
## 857  0.007017544  0.007017544 0.2562418 1.0000000 0.2562418 0.40794979
## 1285 0.006140351  0.006140351 0.2560735 1.0000000 0.2560735 0.40773654
## 1168 0.005263158  0.005263158 0.2559055 1.0000000 0.2559055 0.40752351
## 751  0.004385965  0.004385965 0.2557377 1.0000000 0.2557377 0.40731070
## 774  0.003508772  0.003508772 0.2555701 1.0000000 0.2555701 0.40709812
## 757  0.002631579  0.002631579 0.2554028 1.0000000 0.2554028 0.40688576
## 746  0.001754386  0.001754386 0.2552356 1.0000000 0.2552356 0.40667362
## 353  0.000877193  0.000877193 0.2550687 1.0000000 0.2550687 0.40646170
## 362  0.000000000  0.000000000 0.2549020 0.0000000       NaN 0.40625000
##             MCC         FPR           PG           RG
## 782  0.04372365 0.000000000 1.0000000000 0.0000000000
## 572  0.06185481 0.000000000 1.0000000000 0.0000000000
## 152  0.07578116 0.000000000 1.0000000000 0.0000000000
## 1193 0.08753321 0.000000000 1.0000000000 0.0000000000
## 284  0.09789718 0.000000000 1.0000000000 0.0000000000
## 983  0.10727617 0.000000000 1.0000000000 0.0000000000
## 335  0.11590954 0.000000000 1.0000000000 0.0000000000
## 891  0.12395321 0.000000000 1.0000000000 0.0000000000
## 673  0.13151545 0.000000000 1.0000000000 0.0000000000
## 325  0.13867505 0.000000000 1.0000000000 0.0000000000
## 812  0.12774013 0.000877193 0.7981731187 0.0000000000
## 260  0.13500972 0.000877193 0.8141447368 0.0000000000
## 122  0.14193052 0.000877193 0.8277795079 0.0000000000
## 724  0.13279795 0.001754386 0.6928034372 0.0000000000
## 648  0.12445737 0.002631579 0.5852631579 0.0000000000
## 216  0.13153005 0.002631579 0.6080386513 0.0000000000
## 568  0.13830552 0.002631579 0.6284829721 0.0000000000
## 723  0.13090783 0.003508772 0.5458089669 0.0000000000
## 89   0.13754894 0.003508772 0.5664090975 0.0000000000
## 1261 0.14394873 0.003508772 0.5852631579 0.0000000000
## 721  0.13724044 0.004385965 0.5184389545 0.0000000000
## 633  0.13091831 0.005263158 0.4610700304 0.0000000000
## 1459 0.12494145 0.006140351 0.4115013431 0.0000000000
## 158  0.13134435 0.006140351 0.4310581140 0.0000000000
## 978  0.13754758 0.006140351 0.4494315789 0.0000000000
## 365  0.14356722 0.006140351 0.4667159763 0.0000000000
## 367  0.14941743 0.006140351 0.4829976175 0.0000000000
## 270  0.15511077 0.006140351 0.4983552632 0.0000000000
## 271  0.16065841 0.006140351 0.5128606296 0.0000000000
## 1082 0.16607032 0.006140351 0.5265789474 0.0000000000
## 275  0.17135549 0.006140351 0.5395695274 0.0000000000
## 1267 0.17652198 0.006140351 0.5518863076 0.0000000000
## 347  0.18157711 0.006140351 0.5635783674 0.0000000000
## 85   0.18652750 0.006140351 0.5746904025 0.0000000000
## 241  0.19137921 0.006140351 0.5852631579 0.0000000000
## 345  0.19613772 0.006140351 0.5953338207 0.0000000000
## 336  0.20080811 0.006140351 0.6049363731 0.0000000000
## 455  0.19575825 0.007017544 0.5664090975 0.0000000000
## 332  0.20038706 0.007017544 0.5760406934 0.0000000000
## 237  0.20493597 0.007017544 0.5852631579 0.0000000000
## 372  0.20940888 0.007017544 0.5941012555 0.0000000000
## 210  0.21380943 0.007017544 0.6025778733 0.0000000000
## 578  0.20906661 0.007894737 0.5685861490 0.0000000000
## 259  0.21343301 0.007894737 0.5770851457 0.0000000000
## 1266 0.21773305 0.007894737 0.5852631579 0.0000000000
## 526  0.21318729 0.008771930 0.5542732066 0.0000000000
## 90   0.21745415 0.008771930 0.5624359677 0.0000000000
## 830  0.21305668 0.009649123 0.5337513706 0.0000000000
## 831  0.20877138 0.010526316 0.5069159780 0.0000000000
## 227  0.21302792 0.010526316 0.5152000000 0.0000000000
## 14   0.21722553 0.010526316 0.5232198142 0.0000000000
## 1192 0.22136656 0.010526316 0.5309872314 0.0000000000
## 1498 0.22545318 0.010526316 0.5385134249 0.0000000000
## 290  0.22948746 0.010526316 0.5458089669 0.0000000000
## 1497 0.23347136 0.010526316 0.5528838625 0.0000000000
## 780  0.23740670 0.010526316 0.5597475832 0.0000000000
## 88   0.24129523 0.010526316 0.5664090975 0.0000000000
## 1236 0.23728553 0.011403509 0.5424698041 0.0000000000
## 170  0.23336060 0.012280702 0.5198143304 0.0000000000
## 1237 0.22951700 0.013157895 0.4983552632 0.0000000000
## 430  0.23341683 0.013157895 0.5052263823 0.0000000000
## 131  0.23727273 0.013157895 0.5119187798 0.0000000000
## 431  0.24108616 0.013157895 0.5184389545 0.0000000000
## 43   0.23736731 0.014035088 0.4983552632 0.0000000000
## 428  0.24115515 0.014035088 0.5048022423 0.0000000000
## 1503 0.24490315 0.014035088 0.5110917790 0.0000000000
## 427  0.24861256 0.014035088 0.5172292504 0.0000000000
## 287  0.25228454 0.014035088 0.5232198142 0.0000000000
## 1502 0.25592023 0.014035088 0.5290684177 0.0000000000
## 1196 0.25952069 0.014035088 0.5347798067 0.0000000000
## 924  0.25595761 0.014912281 0.5161569864 0.0000000000
## 223  0.25953792 0.014912281 0.5218232212 0.0000000000
## 214  0.26308495 0.014912281 0.5273626927 0.0000000000
## 344  0.26659966 0.014912281 0.5327794010 0.0000000000
## 16   0.26313676 0.015789474 0.5152000000 0.0000000000
## 563  0.26663291 0.015789474 0.5205751567 0.0000000000
## 321  0.27009843 0.015789474 0.5258364329 0.0000000000
## 84   0.27353414 0.015789474 0.5309872314 0.0000000000
## 1438 0.27016349 0.016666667 0.5143406505 0.0000000000
## 86   0.27358207 0.016666667 0.5194531250 0.0000000000
## 283  0.27697234 0.016666667 0.5244627343 0.0000000000
## 191  0.28033503 0.016666667 0.5293723974 0.0000000000
## 334  0.28367081 0.016666667 0.5341849325 0.0000000000
## 429  0.28698037 0.016666667 0.5389030612 0.0000000000
## 1292 0.28371704 0.017543860 0.5232198142 0.0000000000
## 923  0.28050058 0.018421053 0.5081160514 0.0000000000
## 277  0.28380580 0.018421053 0.5128606296 0.0000000000
## 1259 0.28708599 0.018421053 0.5175178067 0.0000000000
## 982  0.29034174 0.018421053 0.5220898478 0.0000000000
## 211  0.29357363 0.018421053 0.5265789474 0.0000000000
## 60   0.29678220 0.018421053 0.5309872314 0.0000000000
## 742  0.29365938 0.019298246 0.5166774450 0.0000000000
## 83   0.29685473 0.019298246 0.5210581083 0.0000000000
## 231  0.30002778 0.019298246 0.5253627505 0.0000000000
## 396  0.30317902 0.019298246 0.5295932352 0.0000000000
## 147  0.30630895 0.019298246 0.5337513706 0.0000000000
## 1501 0.30941801 0.019298246 0.5378389112 0.0000000000
## 352  0.30638143 0.020175439 0.5242470243 0.0000000000
## 215  0.30947898 0.020175439 0.5283134374 0.0000000000
## 198  0.30648863 0.021052632 0.5152000000 0.0000000000
## 491  0.30353469 0.021929825 0.5024997549 0.0000000000
## 155  0.30662862 0.021929825 0.5065789474 0.0000000000
## 80   0.30970293 0.021929825 0.5105942819 0.0000000000
## 288  0.31275803 0.021929825 0.5145471621 0.0000000000
## 294  0.30986225 0.022807018 0.5023415682 0.0000000000
## 320  0.31290604 0.022807018 0.5062674486 0.0000000000
## 870  0.31005089 0.023684211 0.4944582611 0.0000000000
## 1065 0.30722812 0.024561404 0.4829976175 0.0000000000
## 889  0.31026735 0.024561404 0.4869207359 0.0000000000
## 1198 0.31328849 0.024561404 0.4907872988 0.0000000000
## 38   0.31629188 0.024561404 0.4945984391 0.0000000000
## 390  0.31927786 0.024561404 0.4983552632 0.0000000000
## 37   0.31651244 0.025438596 0.4873233283 0.0000000000
## 29   0.31948778 0.025438596 0.4910519026 0.0000000000
## 394  0.32244636 0.025438596 0.4947288827 0.0000000000
## 1508 0.31972281 0.026315789 0.4840493773 0.0000000000
## 525  0.31702765 0.027192982 0.4736611417 0.0000000000
## 567  0.31998175 0.027192982 0.4773299415 0.0000000000
## 258  0.32291972 0.027192982 0.4809502748 0.0000000000
## 366  0.32584184 0.027192982 0.4845230263 0.0000000000
## 266  0.32874840 0.027192982 0.4880490619 0.0000000000
## 678  0.33163969 0.027192982 0.4915292296 0.0000000000
## 186  0.33451596 0.027192982 0.4949643591 0.0000000000
## 250  0.33188203 0.028070175 0.4849663180 0.0000000000
## 256  0.32927377 0.028947368 0.4752235789 0.0000000000
## 1157 0.32669067 0.029824561 0.4657278116 0.0000000000
## 786  0.32956821 0.029824561 0.4691712541 0.0000000000
## 1373 0.32701466 0.030701754 0.4599272075 0.0000000000
## 337  0.32988260 0.030701754 0.4633419677 0.0000000000
## 616  0.32735769 0.031578947 0.4543382124 0.0000000000
## 761  0.32485610 0.032456140 0.4455543322 0.0000000000
## 340  0.32771894 0.032456140 0.4489497245 0.0000000000
## 370  0.33056781 0.032456140 0.4523060719 0.0000000000
## 157  0.33340296 0.032456140 0.4556239814 0.0000000000
## 123  0.33622460 0.032456140 0.4589040502 0.0000000000
## 991  0.33376301 0.033333333 0.4503676471 0.0000000000
## 187  0.33657568 0.033333333 0.4536203314 0.0000000000
## 481  0.33937529 0.033333333 0.4568367990 0.0005190491
## 600  0.33694366 0.034210526 0.4485166127 0.0005190491
## 217  0.33973457 0.034210526 0.4517064984 0.0014154469
## 124  0.34251284 0.034210526 0.4548616902 0.0023294924
## 610  0.34011013 0.035087719 0.4467471993 0.0023294924
## 1397 0.34287997 0.035087719 0.4498765864 0.0032611855
## 890  0.34838313 0.035087719 0.4560360473 0.0051775148
## 894  0.34838313 0.035087719 0.4560360473 0.0051775148
## 904  0.34601222 0.035964912 0.4481252037 0.0051775148
## 1500 0.34874978 0.035964912 0.4511643540 0.0061621509
## 299  0.34640202 0.036842105 0.4434325862 0.0061621509
## 224  0.34913165 0.036842105 0.4464474099 0.0071644348
## 573  0.35184979 0.036842105 0.4494315789 0.0081843662
## 1227 0.34952815 0.037719298 0.4418781263 0.0081843662
## 326  0.35223859 0.037719298 0.4448386700 0.0092219454
## 570  0.35493789 0.037719298 0.4477697512 0.0102771722
## 1294 0.35264155 0.038596491 0.4403866810 0.0102771722
## 778  0.35533337 0.038596491 0.4432948135 0.0113500467
## 87   0.35801439 0.038596491 0.4461746081 0.0124405689
## 272  0.36068477 0.038596491 0.4490264364 0.0135487387
## 135  0.36334465 0.038596491 0.4518506650 0.0146745562
## 893  0.36599419 0.038596491 0.4546476551 0.0158180214
## 172  0.36863354 0.038596491 0.4574177632 0.0169791342
## 1300 0.36637528 0.039473684 0.4502222340 0.0169791342
## 125  0.36900799 0.039473684 0.4529727096 0.0181578947
## 56   0.37163080 0.039473684 0.4556972808 0.0193543029
## 153  0.37424385 0.039473684 0.4583962788 0.0205683588
## 264  0.37684726 0.039473684 0.4610700304 0.0218000623
## 1458 0.37461897 0.040350877 0.4540419127 0.0218000623
## 783  0.37721622 0.040350877 0.4566976982 0.0230494135
## 329  0.37980410 0.040350877 0.4593291264 0.0243164123
## 1241 0.37759827 0.041228070 0.4524480383 0.0243164123
## 148  0.38018015 0.041228070 0.4550619195 0.0256010589
## 432  0.38275292 0.041228070 0.4576522871 0.0269033531
## 66   0.38531671 0.041228070 0.4602194287 0.0282232949
## 1262 0.38787164 0.041228070 0.4627636283 0.0295608845
## 184  0.39041782 0.041228070 0.4652851659 0.0309161217
## 96   0.38824324 0.042105263 0.4585641246 0.0309161217
## 1352 0.38608348 0.042982456 0.4519653586 0.0309161217
## 685  0.38393834 0.043859649 0.4454860219 0.0309161217
## 1265 0.38648506 0.043859649 0.4480029768 0.0322890065
## 12   0.38902328 0.043859649 0.4504984567 0.0336795391
## 704  0.38689829 0.044736842 0.4441447368 0.0336795391
## 1270 0.38943099 0.044736842 0.4466237937 0.0350877193
## 814  0.38732282 0.045614035 0.4403866810 0.0350877193
## 985  0.38985005 0.045614035 0.4428492624 0.0365135472
## 32   0.39236911 0.045614035 0.4452915133 0.0379570227
## 681  0.39488013 0.045614035 0.4477136596 0.0394181460
## 1137 0.39279384 0.046491228 0.4415972945 0.0394181460
## 680  0.39529962 0.046491228 0.4440037868 0.0408969168
## 376  0.39779756 0.046491228 0.4463908115 0.0423933354
## 247  0.39572988 0.047368421 0.4403866810 0.0423933354
## 343  0.39822273 0.047368421 0.4427584196 0.0439074016
## 262  0.40070793 0.047368421 0.4451112980 0.0454391155
## 749  0.39865839 0.048245614 0.4392154091 0.0454391155
## 477  0.40113863 0.048245614 0.4415533586 0.0469884771
## 544  0.40361142 0.048245614 0.4438730275 0.0485554863
## 887  0.40607684 0.048245614 0.4461746081 0.0501401433
## 228  0.40853499 0.048245614 0.4484582904 0.0517424478
## 46   0.40650822 0.049122807 0.4426740406 0.0517424478
## 532  0.40449364 0.050000000 0.4369834711 0.0517424478
## 902  0.40249109 0.050877193 0.4313846407 0.0517424478
## 1406 0.40050044 0.051754386 0.4258756579 0.0517424478
## 1084 0.40296116 0.051754386 0.4281538107 0.0533624001
## 1422 0.40098452 0.052631579 0.4227346132 0.0533624001
## 136  0.40344044 0.052631579 0.4249978607 0.0550000000
## 928  0.40147753 0.053508772 0.4196658927 0.0550000000
## 373  0.40392869 0.053508772 0.4219142741 0.0566552476
## 1171 0.40197927 0.054385965 0.4166670801 0.0566552476
## 1172 0.40004098 0.055263158 0.4115013431 0.0566552476
## 507  0.39811369 0.056140351 0.4064154469 0.0566552476
## 331  0.40056425 0.056140351 0.4086505153 0.0583281428
## 18   0.40300804 0.056140351 0.4108700322 0.0600186858
## 51   0.40544512 0.056140351 0.4130741377 0.0617268764
## 1396 0.40787558 0.056140351 0.4152629705 0.0634527146
## 177  0.41029948 0.056140351 0.4174366684 0.0651962006
## 138  0.41271691 0.056140351 0.4195953680 0.0669573342
## 1393 0.41512794 0.056140351 0.4217392047 0.0687361154
## 140  0.41753264 0.056140351 0.4238683128 0.0705325444
## 286  0.41993108 0.056140351 0.4259828254 0.0723466210
## 789  0.41803280 0.057017544 0.4209823070 0.0723466210
## 1506 0.42042711 0.057017544 0.4230838872 0.0741783453
## 130  0.42281531 0.057017544 0.4251712701 0.0760277172
## 980  0.42519747 0.057017544 0.4272445820 0.0778947368
## 1189 0.42757366 0.057017544 0.4293039483 0.0797794041
## 399  0.42569367 0.057894737 0.4243822571 0.0797794041
## 25   0.42806598 0.057894737 0.4264294945 0.0816817191
## 1477 0.42619787 0.058771930 0.4215797271 0.0816817191
## 1460 0.42433951 0.059649123 0.4167989085 0.0816817191
## 689  0.42249079 0.060526316 0.4120857851 0.0816817191
## 656  0.42065161 0.061403509 0.4074391311 0.0816817191
## 267  0.42302573 0.061403509 0.4094767152 0.0836016817
## 323  0.42539411 0.061403509 0.4115013431 0.0855392920
## 181  0.42356795 0.062280702 0.4069204889 0.0855392920
## 126  0.42593246 0.062280702 0.4089327203 0.0874945500
## 1029 0.42411730 0.063157895 0.4044155499 0.0874945500
## 527  0.42231123 0.064035088 0.3999604946 0.0874945500
## 324  0.42467362 0.064035088 0.4019604012 0.0894674556
## 1329 0.42287823 0.064912281 0.3975661108 0.0894674556
## 1494 0.42523678 0.064912281 0.3995536028 0.0914580089
## 380  0.42758987 0.064912281 0.4015290327 0.0934662099
## 1221 0.42580664 0.065789474 0.3971937687 0.0934662099
## 483  0.42815598 0.065789474 0.3991570724 0.0954920585
## 509  0.42638306 0.066666667 0.3948795647 0.0954920585
## 1335 0.42461869 0.067543860 0.3906589822 0.0954920585
## 1088 0.42696591 0.067543860 0.3926097059 0.0975355549
## 1094 0.42930786 0.067543860 0.3945489858 0.0995966988
## 1351 0.42755507 0.068421053 0.3903829545 0.0995966988
## 1155 0.42581058 0.069298246 0.3862714863 0.0995966988
## 423  0.42815041 0.069298246 0.3881981174 0.1016754905
## 240  0.43048510 0.069298246 0.3901136939 0.1037719298
## 817  0.42875182 0.070175439 0.3860540450 0.1037719298
## 1319 0.42702661 0.071052632 0.3820467368 0.1037719298
## 872  0.42530938 0.071929825 0.3780909075 0.1037719298
## 346  0.42764340 0.071929825 0.3799926403 0.1058860168
## 801  0.42593547 0.072807018 0.3760860932 0.1058860168
## 1495 0.42826589 0.072807018 0.3779760060 0.1080177515
## 581  0.42656713 0.073684211 0.3741176471 0.1080177515
## 479  0.42889397 0.073684211 0.3759958368 0.1101671338
## 807  0.42720425 0.074561404 0.3721846062 0.1101671338
## 62   0.42952757 0.074561404 0.3740511704 0.1123341638
## 1242 0.42784674 0.075438596 0.3702860407 0.1123341638
## 382  0.43016656 0.075438596 0.3721410775 0.1145188415
## 8    0.43248160 0.075438596 0.3739862273 0.1167211668
## 369  0.43479190 0.075438596 0.3758215538 0.1189411398
## 77   0.43709753 0.075438596 0.3776471206 0.1211787605
## 569  0.43939851 0.075438596 0.3794629912 0.1234340289
## 421  0.43773178 0.076315789 0.3757373855 0.1234340289
## 285  0.44002952 0.076315789 0.3775424662 0.1257069449
## 222  0.44232274 0.076315789 0.3793380687 0.1279975086
## 64   0.44066589 0.077192982 0.3756551102 0.1279975086
## 208  0.43901615 0.078070175 0.3720163304 0.1279975086
## 151  0.44130751 0.078070175 0.3738000866 0.1303057199
## 65   0.44359444 0.078070175 0.3755746647 0.1326315789
## 1264 0.44587698 0.078070175 0.3773401219 0.1349750856
## 473  0.44815518 0.078070175 0.3790965156 0.1373362400
## 1223 0.44651764 0.078947368 0.3754959886 0.1373362400
## 550  0.44488698 0.079824561 0.3719377120 0.1373362400
## 1440 0.44326311 0.080701754 0.3684210526 0.1373362400
## 993  0.44164600 0.081578947 0.3649453888 0.1373362400
## 1027 0.44003556 0.082456140 0.3615101104 0.1373362400
## 1483 0.43843175 0.083333333 0.3581146183 0.1373362400
## 1009 0.43683450 0.084210526 0.3547583244 0.1373362400
## 1509 0.43524376 0.085087719 0.3514406512 0.1373362400
## 379  0.43752736 0.085087719 0.3531754068 0.1397150420
## 1099 0.43594416 0.085964912 0.3498936381 0.1397150420
## 1313 0.43436733 0.086842105 0.3466492524 0.1397150420
## 676  0.43664892 0.086842105 0.3483714827 0.1421114917
## 693  0.43507945 0.087719298 0.3451616473 0.1421114917
## 1215 0.43351621 0.088596491 0.3419880116 0.1421114917
## 52   0.43579577 0.088596491 0.3436976502 0.1445255891
## 5    0.43423973 0.089473684 0.3405572755 0.1445255891
## 834  0.43268978 0.090350877 0.3374519682 0.1445255891
## 69   0.43496729 0.090350877 0.3391489671 0.1469573342
## 957  0.43342437 0.091228070 0.3360756931 0.1469573342
## 17   0.43569886 0.091228070 0.3377625709 0.1494067269
## 1246 0.43416288 0.092105263 0.3347207304 0.1494067269
## 1504 0.43643436 0.092105263 0.3363975869 0.1518737673
## 1260 0.43870192 0.092105263 0.3380670077 0.1543584553
## 1017 0.43717376 0.092982456 0.3350535302 0.1543584553
## 885  0.43943840 0.092982456 0.3367131400 0.1568607910
## 1175 0.43791700 0.093859649 0.3337299300 0.1568607910
## 189  0.44017875 0.093859649 0.3353798246 0.1593807744
## 368  0.44243669 0.093859649 0.3370225378 0.1619184055
## 1051 0.44092293 0.094736842 0.3340666037 0.1619184055
## 383  0.44317807 0.094736842 0.3356998024 0.1644736842
## 1485 0.44167089 0.095614035 0.3327730331 0.1644736842
## 1337 0.44016930 0.096491228 0.3298773674 0.1644736842
## 926  0.43867324 0.097368421 0.3270123839 0.1644736842
## 1239 0.43718267 0.098245614 0.3241776682 0.1644736842
## 931  0.43569755 0.099122807 0.3213728129 0.1644736842
## 1130 0.43421783 0.100000000 0.3185974173 0.1644736842
## 322  0.43647464 0.100000000 0.3202081165 0.1670466106
## 997  0.43500111 0.100877193 0.3174589527 0.1670466106
## 694  0.43353287 0.101754386 0.3147383993 0.1670466106
## 185  0.43578771 0.101754386 0.3163369079 0.1696371847
## 710  0.43432553 0.102631579 0.3136416872 0.1696371847
## 424  0.43657760 0.102631579 0.3152309345 0.1722454064
## 1214 0.43512142 0.103508772 0.3125606136 0.1722454064
## 281  0.43737075 0.103508772 0.3141406941 0.1748712758
## 1093 0.43961658 0.103508772 0.3157145266 0.1775147929
## 263  0.44185893 0.103508772 0.3172821353 0.1801759576
## 425  0.44409784 0.103508772 0.3188435444 0.1828547701
## 475  0.44633335 0.103508772 0.3203987784 0.1855512301
## 1394 0.44856547 0.103508772 0.3219478618 0.1882653379
## 395  0.45079425 0.103508772 0.3234908193 0.1909970933
## 230  0.45301972 0.103508772 0.3250276755 0.1937464964
## 1106 0.45157523 0.104385965 0.3223633759 0.1937464964
## 804  0.45013571 0.105263158 0.3197256003 0.1937464964
## 1505 0.45235959 0.105263158 0.3212515339 0.1965135472
## 213  0.45458023 0.105263158 0.3227715332 0.1992982456
## 1238 0.45314729 0.106140351 0.3201549758 0.1992982456
## 1046 0.45171920 0.107017544 0.3175641583 0.1992982456
## 1374 0.45029594 0.107894737 0.3149987582 0.1992982456
## 202  0.44887745 0.108771930 0.3124584578 0.1992982456
## 709  0.44746371 0.109649123 0.3099429444 0.1992982456
## 437  0.44968518 0.109649123 0.3114444763 0.2021005917
## 657  0.44827691 0.110526316 0.3089507685 0.2021005917
## 1248 0.44687330 0.111403509 0.3064811862 0.2021005917
## 233  0.44909317 0.111403509 0.3079718289 0.2049205855
## 615  0.44769492 0.112280702 0.3055233581 0.2049205855
## 276  0.44991244 0.112280702 0.3070058654 0.2077582269
## 614  0.44851951 0.113157895 0.3045781734 0.2077582269
## 1103 0.44713110 0.114035088 0.3021736365 0.2077582269
## 921  0.44574718 0.114912281 0.2997919738 0.2077582269
## 1245 0.44436772 0.115789474 0.2974329081 0.2077582269
## 596  0.44299268 0.116666667 0.2950961668 0.2077582269
## 744  0.44162204 0.117543860 0.2927814811 0.2077582269
## 78   0.44384078 0.117543860 0.2942419867 0.2106135160
## 690  0.44247516 0.118421053 0.2919461782 0.2106135160
## 975  0.44469159 0.118421053 0.2933987577 0.2134864528
## 296  0.44333095 0.119298246 0.2911215404 0.2134864528
## 146  0.44554510 0.119298246 0.2925662728 0.2163770373
## 196  0.44418939 0.120175439 0.2903073668 0.2163770373
## 625  0.44283790 0.121052632 0.2880693712 0.2163770373
## 863  0.44149061 0.121929825 0.2858520399 0.2163770373
## 906  0.44014748 0.122807018 0.2836551304 0.2163770373
## 1140 0.43880849 0.123684211 0.2814784034 0.2163770373
## 711  0.43747360 0.124561404 0.2793216234 0.2163770373
## 1114 0.43614279 0.125438596 0.2771845580 0.2163770373
## 22   0.43481602 0.126315789 0.2750669783 0.2163770373
## 692  0.43349327 0.127192982 0.2729686586 0.2163770373
## 1117 0.43217450 0.128070175 0.2708893762 0.2163770373
## 502  0.43085970 0.128947368 0.2688289119 0.2163770373
## 1039 0.42954882 0.129824561 0.2667870494 0.2163770373
## 392  0.43176732 0.129824561 0.2681906255 0.2192852694
## 622  0.43046088 0.130701754 0.2661639438 0.2192852694
## 488  0.42915830 0.131578947 0.2641554157 0.2192852694
## 1306 0.42785956 0.132456140 0.2621648350 0.2192852694
## 612  0.42656463 0.133333333 0.2601919979 0.2192852694
## 1141 0.42527347 0.134210526 0.2582367037 0.2192852694
## 1437 0.42398608 0.135087719 0.2562987547 0.2192852694
## 1041 0.42270241 0.135964912 0.2543779555 0.2192852694
## 595  0.42142245 0.136842105 0.2524741136 0.2192852694
## 981  0.42364224 0.136842105 0.2538474177 0.2222111492
## 1315 0.42236642 0.137719298 0.2519570062 0.2222111492
## 1336 0.42109424 0.138596491 0.2500831564 0.2222111492
## 1107 0.41982568 0.139473684 0.2482256842 0.2222111492
## 472  0.42204416 0.139473684 0.2495850930 0.2251546766
## 1469 0.42077964 0.140350877 0.2477404700 0.2251546766
## 1298 0.41951868 0.141228070 0.2459118475 0.2251546766
## 626  0.41826125 0.142105263 0.2440990496 0.2251546766
## 93   0.41700733 0.142982456 0.2423019026 0.2251546766
## 145  0.41922493 0.142982456 0.2436441715 0.2281158518
## 1464 0.41797492 0.143859649 0.2418591365 0.2281158518
## 495  0.41672837 0.144736842 0.2400893979 0.2281158518
## 109  0.41548524 0.145614035 0.2383347896 0.2281158518
## 1295 0.41424551 0.146491228 0.2365951478 0.2281158518
## 243  0.41300917 0.147368421 0.2348703109 0.2281158518
## 1445 0.41177619 0.148245614 0.2331601192 0.2281158518
## 1181 0.41054654 0.149122807 0.2314644154 0.2281158518
## 1334 0.40932021 0.150000000 0.2297830440 0.2281158518
## 497  0.40809717 0.150877193 0.2281158518 0.2281158518
## 897  0.40687739 0.151754386 0.2264626874 0.2281158518
## 1008 0.40566086 0.152631579 0.2248234014 0.2281158518
## 75   0.40788022 0.152631579 0.2261247198 0.2310946746
## 1318 0.40666727 0.153508772 0.2244957084 0.2310946746
## 1407 0.40545751 0.154385965 0.2228802739 0.2310946746
## 575  0.40767508 0.154385965 0.2241715400 0.2340911450
## 1297 0.40646885 0.155263158 0.2225661038 0.2340911450
## 1481 0.40526577 0.156140351 0.2209739520 0.2340911450
## 28   0.40748158 0.156140351 0.2222552821 0.2371052632
## 98   0.40628196 0.157017544 0.2206728618 0.2371052632
## 728  0.40508544 0.157894737 0.2191034423 0.2371052632
## 722  0.40389200 0.158771930 0.2175468885 0.2371052632
## 1013 0.40270162 0.159649123 0.2160030670 0.2371052632
## 961  0.40151428 0.160526316 0.2144718462 0.2371052632
## 1450 0.40032995 0.161403509 0.2129530960 0.2371052632
## 159  0.40254534 0.161403509 0.2142109989 0.2401370290
## 855  0.40136433 0.162280702 0.2127011744 0.2401370290
## 212  0.40357769 0.162280702 0.2139528509 0.2431864424
## 637  0.40239996 0.163157895 0.2124518498 0.2431864424
## 1388 0.40461133 0.163157895 0.2136973606 0.2462535036
## 15   0.40343686 0.164035088 0.2122050825 0.2462535036
## 1496 0.40564625 0.164035088 0.2134444873 0.2493382124
## 732  0.40447503 0.164912281 0.2119608333 0.2493382124
## 397  0.40330670 0.165789474 0.2104890061 0.2493382124
## 317  0.40551447 0.165789474 0.2117190640 0.2524405689
## 1382 0.40434934 0.166666667 0.2102556398 0.2524405689
## 1392 0.40655521 0.166666667 0.2114797371 0.2555605730
## 1529 0.40539324 0.167543860 0.2100246223 0.2555605730
## 538  0.40423411 0.168421053 0.2085809731 0.2555605730
## 706  0.40307779 0.169298246 0.2071486753 0.2555605730
## 1030 0.40192427 0.170175439 0.2057276162 0.2555605730
## 964  0.40077352 0.171052632 0.2043176845 0.2555605730
## 1521 0.39962553 0.171929825 0.2029187702 0.2555605730
## 1091 0.40183107 0.171929825 0.2041206835 0.2586982249
## 687  0.40068611 0.172807018 0.2027294118 0.2586982249
## 832  0.39954388 0.173684211 0.2013489387 0.2586982249
## 76   0.40174788 0.173684211 0.2025419059 0.2618535243
## 649  0.40060863 0.174561404 0.2011688851 0.2618535243
## 1426 0.39947207 0.175438596 0.1998064505 0.2618535243
## 144  0.40167456 0.175438596 0.2009905781 0.2650264715
## 1399 0.40387498 0.175438596 0.2021723443 0.2682170663
## 377  0.40607335 0.175438596 0.2033517436 0.2714253088
## 1510 0.40494034 0.176315789 0.2019902361 0.2714253088
## 1212 0.40380997 0.177192982 0.2006391033 0.2714253088
## 1514 0.40268221 0.178070175 0.1992982456 0.2714253088
## 1174 0.40155705 0.178947368 0.1979675643 0.2714253088
## 949  0.40043447 0.179824561 0.1966469620 0.2714253088
## 1462 0.39931446 0.180701754 0.1953363424 0.2714253088
## 1492 0.39819700 0.181578947 0.1940356102 0.2714253088
## 1066 0.39708208 0.182456140 0.1927446716 0.2714253088
## 546  0.39928078 0.182456140 0.1938966301 0.2746511990
## 835  0.39816865 0.183333333 0.1926122520 0.2746511990
## 1033 0.39705903 0.184210526 0.1913374818 0.2746511990
## 300  0.39595188 0.185087719 0.1900722291 0.2746511990
## 979  0.39814947 0.185087719 0.1912126991 0.2778947368
## 797  0.39704507 0.185964912 0.1899537599 0.2778947368
## 963  0.39594311 0.186842105 0.1887041598 0.2778947368
## 318  0.40033369 0.186842105 0.1909665757 0.2844347555
## 319  0.40033369 0.186842105 0.1909665757 0.2844347555
## 1424 0.39923472 0.187719298 0.1897200780 0.2844347555
## 1240 0.39813816 0.188596491 0.1884827456 0.2844347555
## 956  0.39704400 0.189473684 0.1872544938 0.2844347555
## 1476 0.39595222 0.190350877 0.1860352385 0.2844347555
## 30   0.39814583 0.190350877 0.1871512567 0.2877312364
## 1011 0.39705669 0.191228070 0.1859378794 0.2877312364
## 342  0.39924875 0.191228070 0.1870489503 0.2910453649
## 141  0.40143902 0.191228070 0.1881581026 0.2943771411
## 939  0.40035278 0.192105263 0.1869475621 0.2943771411
## 1269 0.40254157 0.192105263 0.1880518289 0.2977265649
## 10   0.40472861 0.192105263 0.1891541886 0.3010936365
## 1089 0.40691391 0.192105263 0.1902546349 0.3044783557
## 436  0.40909750 0.192105263 0.1913531615 0.3078807225
## 907  0.40801477 0.192982456 0.1901396780 0.3078807225
## 839  0.40693433 0.193859649 0.1889348667 0.3078807225
## 1228 0.40585618 0.194736842 0.1877386494 0.3078807225
## 1513 0.40478030 0.195614035 0.1865509491 0.3078807225
## 618  0.40370669 0.196491228 0.1853716892 0.3078807225
## 133  0.40589010 0.196491228 0.1864539719 0.3113007370
## 1442 0.40481902 0.197368421 0.1852802135 0.3113007370
## 485  0.40375017 0.198245614 0.1841147459 0.3113007370
## 480  0.40593253 0.198245614 0.1851895348 0.3147383993
## 1507 0.40486620 0.199122807 0.1840294446 0.3147383993
## 1304 0.40380206 0.200000000 0.1828774991 0.3147383993
## 1404 0.40274011 0.200877193 0.1817336262 0.3147383993
## 494  0.40168033 0.201754386 0.1805977548 0.3147383993
## 435  0.40386226 0.201754386 0.1816595059 0.3181937091
## 1159 0.40280493 0.202631579 0.1805287516 0.3181937091
## 555  0.40174975 0.203508772 0.1794058596 0.3181937091
## 1136 0.40069670 0.204385965 0.1782907611 0.3181937091
## 273  0.40287792 0.204385965 0.1793424479 0.3216666667
## 794  0.40182728 0.205263158 0.1782322863 0.3216666667
## 608  0.40077874 0.206140351 0.1771297843 0.3216666667
## 853  0.39973230 0.207017544 0.1760348752 0.3216666667
## 82   0.40191285 0.207017544 0.1770766305 0.3251572719
## 727  0.40086877 0.207894737 0.1759864855 0.3251572719
## 1296 0.39982675 0.208771930 0.1749038042 0.3251572719
## 790  0.39878679 0.209649123 0.1738285225 0.3251572719
## 1400 0.40096670 0.209649123 0.1748604780 0.3286655248
## 20   0.40314515 0.209649123 0.1758909110 0.3321914253
## 229  0.40532214 0.209649123 0.1769198141 0.3357349735
## 938  0.40428508 0.210526316 0.1758437162 0.3357349735
## 1032 0.40325005 0.211403509 0.1747748964 0.3357349735
## 1530 0.40221703 0.212280702 0.1737132928 0.3357349735
## 1005 0.40118601 0.213157895 0.1726588441 0.3357349735
## 959  0.40015697 0.214035088 0.1716114897 0.3357349735
## 1333 0.39912991 0.214912281 0.1705711695 0.3357349735
## 795  0.39810481 0.215789474 0.1695378242 0.3357349735
## 1133 0.39708167 0.216666667 0.1685113950 0.3357349735
## 962  0.39606047 0.217543860 0.1674918236 0.3357349735
## 1226 0.39504120 0.218421053 0.1664790526 0.3357349735
## 1191 0.39721965 0.218421053 0.1674797270 0.3392961694
## 169  0.39620258 0.219298246 0.1664710418 0.3392961694
## 34   0.39837996 0.219298246 0.1674677269 0.3428750130
## 474  0.40055600 0.219298246 0.1684630724 0.3464715042
## 942  0.39954140 0.220175439 0.1674558222 0.3464715042
## 426  0.40171642 0.220175439 0.1684472208 0.3500856431
## 1517 0.40070401 0.221052632 0.1674440118 0.3500856431
## 1158 0.39969347 0.221929825 0.1664473888 0.3500856431
## 1356 0.39868479 0.222807018 0.1654572975 0.3500856431
## 192  0.40085940 0.222807018 0.1664396285 0.3537174297
## 1135 0.39985288 0.223684211 0.1654534427 0.3537174297
## 976  0.40202652 0.223684211 0.1664319289 0.3573668639
## 333  0.40419891 0.223684211 0.1674091353 0.3610339458
## 1190 0.40637008 0.223684211 0.1683850546 0.3647186754
## 640  0.40536630 0.224561404 0.1673976911 0.3647186754
## 1134 0.40436435 0.225438596 0.1664167094 0.3647186754
## 1116 0.40336422 0.226315789 0.1654420575 0.3647186754
## 101  0.40236589 0.227192982 0.1644736842 0.3647186754
## 818  0.40136937 0.228070175 0.1635115387 0.3647186754
## 803  0.40037462 0.228947368 0.1625555707 0.3647186754
## 565  0.40254643 0.228947368 0.1635152274 0.3684210526
## 702  0.40155377 0.229824561 0.1625629008 0.3684210526
## 838  0.40056287 0.230701754 0.1616166553 0.3684210526
## 992  0.39957372 0.231578947 0.1606764420 0.3684210526
## 553  0.39858632 0.232456140 0.1597422127 0.3684210526
## 180  0.39760066 0.233333333 0.1588139195 0.3684210526
## 1479 0.39661672 0.234210526 0.1578915152 0.3684210526
## 940  0.39563450 0.235087719 0.1569749529 0.3684210526
## 11   0.39997892 0.235087719 0.1588563077 0.3758787501
## 120  0.39997892 0.235087719 0.1588563077 0.3758787501
## 847  0.39899900 0.235964912 0.1579406558 0.3758787501
## 802  0.39802077 0.236842105 0.1570307595 0.3758787501
## 1419 0.39704423 0.237719298 0.1561265734 0.3758787501
## 591  0.39606937 0.238596491 0.1552280525 0.3758787501
## 282  0.39824115 0.238596491 0.1561574212 0.3796340704
## 986  0.40041188 0.238596491 0.1570857418 0.3834070383
## 566  0.40258157 0.238596491 0.1580130064 0.3871976539
## 821  0.40160929 0.239473684 0.1571129294 0.3871976539
## 708  0.40063866 0.240350877 0.1562184381 0.3871976539
## 977  0.40280796 0.240350877 0.1571399177 0.3910059172
## 849  0.40520917 0.242105263 0.1571933050 0.3986753867
## 871  0.40520917 0.242105263 0.1571933050 0.3986753867
## 888  0.40520917 0.242105263 0.1571933050 0.3986753867
## 895  0.40520917 0.242105263 0.1571933050 0.3986753867
## 1069 0.40424440 0.242982456 0.1563083030 0.3986753867
## 998  0.40328124 0.243859649 0.1554287240 0.3986753867
## 1349 0.40231969 0.244736842 0.1545545263 0.3986753867
## 879  0.40135973 0.245614035 0.1536856687 0.3986753867
## 1478 0.40040135 0.246491228 0.1528221102 0.3986753867
## 1045 0.39944455 0.247368421 0.1519638104 0.3986753867
## 815  0.39848932 0.248245614 0.1511107290 0.3986753867
## 1475 0.39753564 0.249122807 0.1502628263 0.3986753867
## 1152 0.39658352 0.250000000 0.1494200628 0.3986753867
## 462  0.39563293 0.250877193 0.1485823997 0.3986753867
## 688  0.39468388 0.251754386 0.1477497982 0.3986753867
## 677  0.39685446 0.251754386 0.1486382931 0.4025365930
## 1281 0.39590725 0.252631579 0.1478084411 0.4025365930
## 484  0.39807726 0.252631579 0.1486937948 0.4064154469
## 1207 0.39713189 0.253508772 0.1478666745 0.4064154469
## 1372 0.39618802 0.254385965 0.1470445086 0.4064154469
## 671  0.39835782 0.254385965 0.1479245026 0.4103119485
## 770  0.39741578 0.255263158 0.1471050165 0.4103119485
## 1520 0.39647523 0.256140351 0.1462904143 0.4103119485
## 987  0.39864485 0.256140351 0.1471651061 0.4142260978
## 1358 0.39770610 0.257017544 0.1463531332 0.4142260978
## 298  0.39676883 0.257894737 0.1455459748 0.4142260978
## 1405 0.39583302 0.258771930 0.1447435952 0.4142260978
## 398  0.39489866 0.259649123 0.1439459589 0.4142260978
## 1487 0.39396575 0.260526316 0.1431530309 0.4142260978
## 226  0.39613623 0.260526316 0.1440158915 0.4181578947
## 74   0.39830593 0.260526316 0.1448779690 0.4221073394
## 1076 0.39737512 0.261403509 0.1440853497 0.4221073394
## 1070 0.39644575 0.262280702 0.1432973761 0.4221073394
## 121  0.39861537 0.262280702 0.1441543382 0.4260744316
## 1067 0.39768775 0.263157895 0.1433688190 0.4260744316
## 31   0.39985698 0.263157895 0.1442228618 0.4300591716
## 651  0.39893113 0.264035088 0.1434397819 0.4300591716
## 1411 0.39800668 0.264912281 0.1426612532 0.4300591716
## 1273 0.39708362 0.265789474 0.1418872425 0.4300591716
## 173  0.39616196 0.266666667 0.1411177170 0.4300591716
## 92   0.39833187 0.266666667 0.1419624897 0.4340615592
## 236  0.40050110 0.266666667 0.1428065328 0.4380815945
## 238  0.40266966 0.266666667 0.1436498386 0.4421192775
## 793  0.40175043 0.267543860 0.1428784500 0.4421192775
## 400  0.40083258 0.268421053 0.1421114917 0.4421192775
## 328  0.39991609 0.269298246 0.1413489321 0.4421192775
## 672  0.40208508 0.269298246 0.1421852563 0.4461746081
## 1243 0.40117031 0.270175439 0.1414249910 0.4461746081
## 533  0.40025689 0.271052632 0.1406690648 0.4461746081
## 1377 0.39934482 0.271929825 0.1399174466 0.4461746081
## 142  0.40151428 0.271929825 0.1407468787 0.4502475864
## 661  0.40060391 0.272807018 0.1399974860 0.4502475864
## 1457 0.39969486 0.273684211 0.1392523436 0.4502475864
## 385  0.39878713 0.274561404 0.1385114211 0.4502475864
## 179  0.40095711 0.274561404 0.1393340494 0.4543382124
## 457  0.40005106 0.275438596 0.1385952861 0.4543382124
## 354  0.39914632 0.276315789 0.1378606867 0.4543382124
## 1097 0.39824287 0.277192982 0.1371302217 0.4543382124
## 476  0.40041341 0.277192982 0.1379461332 0.4584464860
## 592  0.39951163 0.278070175 0.1372177632 0.4584464860
## 1387 0.39861113 0.278947368 0.1364934730 0.4584464860
## 1499 0.40078188 0.278947368 0.1373047468 0.4625724073
## 453  0.39988304 0.279824561 0.1365825147 0.4625724073
## 779  0.40205366 0.279824561 0.1373911780 0.4667159763
## 670  0.40422379 0.279824561 0.1381992171 0.4708771930
## 137  0.40639343 0.279824561 0.1390066247 0.4750560573
## 253  0.40549702 0.280701754 0.1382825103 0.4750560573
## 1104 0.40460187 0.281578947 0.1375624038 0.4750560573
## 1105 0.40370798 0.282456140 0.1368462774 0.4750560573
## 1355 0.40281534 0.283333333 0.1361341037 0.4750560573
## 389  0.40498610 0.283333333 0.1369330951 0.4792525693
## 469  0.40409510 0.284210526 0.1362229102 0.4792525693
## 209  0.40320533 0.285087719 0.1355166269 0.4792525693
## 1482 0.40231679 0.285964912 0.1348142183 0.4792525693
## 163  0.40142946 0.286842105 0.1341156580 0.4792525693
## 41   0.40054336 0.287719298 0.1334209195 0.4792525693
## 1098 0.39965846 0.288596491 0.1327299767 0.4792525693
## 388  0.40183120 0.288596491 0.1335168501 0.4834667290
## 927  0.40094790 0.289473684 0.1328277697 0.4834667290
## 410  0.40006580 0.290350877 0.1321424366 0.4834667290
## 442  0.39918489 0.291228070 0.1314608255 0.4834667290
## 391  0.40135845 0.291228070 0.1322414607 0.4876985363
## 171  0.40353165 0.291228070 0.1330215632 0.4919479913
## 1113 0.40265274 0.292105263 0.1323398815 0.4919479913
## 471  0.40177500 0.292982456 0.1316618779 0.4919479913
## 1180 0.40089844 0.293859649 0.1309875277 0.4919479913
## 1086 0.40307254 0.293859649 0.1317614909 0.4962150939
## 582  0.40219755 0.294736842 0.1310889093 0.4962150939
## 874  0.40132372 0.295614035 0.1304199355 0.4962150939
## 547  0.40349833 0.295614035 0.1311896806 0.5004998443
## 448  0.40262607 0.296491228 0.1305224454 0.5004998443
## 898  0.40175496 0.297368421 0.1298587729 0.5004998443
## 528  0.40088498 0.298245614 0.1291986396 0.5004998443
## 545  0.40306058 0.298245614 0.1299623787 0.5048022423
## 611  0.40219216 0.299122807 0.1293039344 0.5048022423
## 386  0.40132487 0.300000000 0.1286489854 0.5048022423
## 534  0.40045869 0.300877193 0.1279975086 0.5048022423
## 100  0.39959363 0.301754386 0.1273494809 0.5048022423
## 235  0.40177069 0.301754386 0.1281054805 0.5091222880
## 1052 0.40090717 0.302631579 0.1274590743 0.5091222880
## 1343 0.40004475 0.303508772 0.1268160752 0.5091222880
## 349  0.39918343 0.304385965 0.1261764607 0.5091222880
## 996  0.39832320 0.305263158 0.1255402085 0.5091222880
## 178  0.40050177 0.305263158 0.1262885813 0.5134599813
## 278  0.40268013 0.305263158 0.1270365205 0.5178153223
## 858  0.40182186 0.306140351 0.1264000497 0.5178153223
## 1375 0.40096467 0.307017544 0.1257669039 0.5178153223
## 1119 0.40010856 0.307894737 0.1251370614 0.5178153223
## 482  0.40228807 0.307894737 0.1258792683 0.5221883110
## 851  0.40143348 0.308771930 0.1252509499 0.5221883110
## 407  0.40057994 0.309649123 0.1246258950 0.5221883110
## 530  0.39972745 0.310526316 0.1240040827 0.5221883110
## 603  0.39887602 0.311403509 0.1233854919 0.5221883110
## 490  0.39802563 0.312280702 0.1227701018 0.5221883110
## 1178 0.39717629 0.313157895 0.1221578917 0.5221883110
## 232  0.39935836 0.313157895 0.1228892258 0.5265789474
## 1408 0.39851050 0.314035088 0.1222784448 0.5265789474
## 1078 0.39766367 0.314912281 0.1216708062 0.5265789474
## 24   0.39681786 0.315789474 0.1210662900 0.5265789474
## 1425 0.39597307 0.316666667 0.1204648760 0.5265789474
## 1205 0.39512929 0.317543860 0.1198665446 0.5265789474
## 1055 0.39428651 0.318421053 0.1192712759 0.5265789474
## 585  0.39344474 0.319298246 0.1186790506 0.5265789474
## 624  0.39260396 0.320175439 0.1180898491 0.5265789474
## 378  0.39478960 0.320175439 0.1188071088 0.5309872314
## 1129 0.39395028 0.321052632 0.1182192149 0.5309872314
## 1430 0.39311194 0.321929825 0.1176343100 0.5309872314
## 265  0.39446156 0.322807018 0.1177642471 0.5354131631
## 1341 0.39446156 0.322807018 0.1177642471 0.5354131631
## 1357 0.39362564 0.323684211 0.1171835833 0.5354131631
## 134  0.39581307 0.323684211 0.1178934697 0.5398567424
## 470  0.39497859 0.324561404 0.1173140720 0.5398567424
## 886  0.39716648 0.324561404 0.1180219835 0.5443179695
## 1208 0.39633345 0.325438596 0.1174438470 0.5443179695
## 1071 0.39550137 0.326315789 0.1168686160 0.5443179695
## 1474 0.39467025 0.327192982 0.1162962722 0.5443179695
## 854  0.39602992 0.328070175 0.1164278069 0.5487968442
## 892  0.39602992 0.328070175 0.1164278069 0.5487968442
## 440  0.39520118 0.328947368 0.1158595439 0.5487968442
## 456  0.39437338 0.329824561 0.1152941176 0.5487968442
## 225  0.39656424 0.329824561 0.1159915742 0.5532933666
## 1150 0.39573787 0.330701754 0.1154273405 0.5532933666
## 1092 0.39792928 0.330701754 0.1161228939 0.5578075366
## 162  0.39710434 0.331578947 0.1155598484 0.5578075366
## 422  0.39628032 0.332456140 0.1149995934 0.5578075366
## 564  0.39847282 0.332456140 0.1156916470 0.5623393543
## 452  0.39765023 0.333333333 0.1151325617 0.5623393543
## 176  0.39682855 0.334210526 0.1145762356 0.5623393543
## 1332 0.39600778 0.335087719 0.1140226520 0.5623393543
## 521  0.39518792 0.335964912 0.1134717939 0.5623393543
## 168  0.39436896 0.336842105 0.1129236446 0.5623393543
## 792  0.39355089 0.337719298 0.1123781876 0.5623393543
## 623  0.39273372 0.338596491 0.1118354064 0.5623393543
## 487  0.39191743 0.339473684 0.1112952848 0.5623393543
## 909  0.39110202 0.340350877 0.1107578065 0.5623393543
## 1085 0.39329924 0.340350877 0.1114353214 0.5668888197
## 1272 0.39248523 0.341228070 0.1108989010 0.5668888197
## 613  0.39167208 0.342105263 0.1103650951 0.5668888197
## 609  0.39085981 0.342982456 0.1098338877 0.5668888197
## 1331 0.39004839 0.343859649 0.1093052632 0.5668888197
## 765  0.38923784 0.344736842 0.1087792058 0.5668888197
## 599  0.38842813 0.345614035 0.1082557002 0.5668888197
## 1200 0.39062865 0.345614035 0.1089236591 0.5714559327
## 1016 0.38982032 0.346491228 0.1084011455 0.5714559327
## 750  0.38901284 0.347368421 0.1078811560 0.5714559327
## 882  0.38820619 0.348245614 0.1073636757 0.5714559327
## 459  0.38740038 0.349122807 0.1068486894 0.5714559327
## 1480 0.38659540 0.350000000 0.1063361821 0.5714559327
## 1389 0.38879879 0.350000000 0.1069962859 0.5760406934
## 1391 0.39100243 0.350000000 0.1076562190 0.5806431018
## 1390 0.39320632 0.350000000 0.1083159750 0.5852631579
## 1064 0.39240379 0.350877193 0.1078013807 0.5852631579
## 1398 0.39460850 0.350877193 0.1084594479 0.5899008616
## 598  0.39380735 0.351754386 0.1079458099 0.5899008616
## 584  0.39300701 0.352631579 0.1074346191 0.5899008616
## 944  0.39220748 0.353508772 0.1069258610 0.5899008616
## 103  0.39140876 0.354385965 0.1064195213 0.5899008616
## 188  0.39361601 0.354385965 0.1070714355 0.5945562130
## 1463 0.39281866 0.355263158 0.1065660150 0.5945562130
## 781  0.39502679 0.355263158 0.1072162829 0.5992292121
## 341  0.39723526 0.355263158 0.1078663830 0.6039198588
## 602  0.39643986 0.356140351 0.1073604084 0.6039198588
## 1161 0.39564525 0.357017544 0.1068568185 0.6039198588
## 771  0.39485144 0.357894737 0.1063555993 0.6039198588
## 540  0.39405842 0.358771930 0.1058567370 0.6039198588
## 725  0.39326619 0.359649123 0.1053602177 0.6039198588
## 745  0.39247473 0.360526316 0.1048660279 0.6039198588
## 510  0.39168406 0.361403509 0.1043741539 0.6039198588
## 522  0.39089415 0.362280702 0.1038845823 0.6039198588
## 2    0.39310763 0.362280702 0.1045228689 0.6086281532
## 1087 0.39532153 0.362280702 0.1051610192 0.6133540953
## 950  0.39453357 0.363157895 0.1046708581 0.6133540953
## 662  0.39374638 0.364035088 0.1041829787 0.6133540953
## 768  0.39295995 0.364912281 0.1036973675 0.6133540953
## 63   0.39217428 0.365789474 0.1032140117 0.6133540953
## 107  0.39138936 0.366666667 0.1027328982 0.6133540953
## 753  0.39060519 0.367543860 0.1022540140 0.6133540953
## 713  0.38982176 0.368421053 0.1017773464 0.6133540953
## 1395 0.39204028 0.368421053 0.1024053952 0.6180976850
## 601  0.39125820 0.369298246 0.1019295202 0.6180976850
## 1428 0.39047686 0.370175439 0.1014558393 0.6180976850
## 775  0.38969624 0.371052632 0.1009843399 0.6180976850
## 190  0.39191708 0.371052632 0.1016080666 0.6228589225
## 715  0.39113781 0.371929825 0.1011373387 0.6228589225
## 339  0.39335976 0.371929825 0.1017595699 0.6276378075
## 1330 0.39258184 0.372807018 0.1012896116 0.6276378075
## 375  0.39480494 0.372807018 0.1019103540 0.6324343403
## 99   0.39402837 0.373684211 0.1014411637 0.6324343403
## 785  0.39625265 0.373684211 0.1020604241 0.6372485207
## 139  0.39847748 0.373684211 0.1026795789 0.6420803488
## 655  0.39770291 0.374561404 0.1022097852 0.6420803488
## 1451 0.39692905 0.375438596 0.1017421255 0.6420803488
## 1527 0.39615590 0.376315789 0.1012765879 0.6420803488
## 95   0.39538346 0.377192982 0.1008131605 0.6420803488
## 458  0.39461173 0.378070175 0.1003518313 0.6420803488
## 154  0.39684038 0.378070175 0.1009640780 0.6469298246
## 579  0.39607000 0.378947368 0.1005034841 0.6469298246
## 161  0.39530032 0.379824561 0.1000449677 0.6469298246
## 562  0.39453134 0.380701754 0.0995885173 0.6469298246
## 220  0.39376304 0.381578947 0.0991341212 0.6469298246
## 175  0.39299543 0.382456140 0.0986817681 0.6469298246
## 741  0.39222850 0.383333333 0.0982314465 0.6469298246
## 919  0.39146225 0.384210526 0.0977831451 0.6469298246
## 873  0.39069667 0.385087719 0.0973368527 0.6469298246
## 274  0.39293124 0.385087719 0.0979383098 0.6517969480
## 1282 0.39216701 0.385964912 0.0974926904 0.6517969480
## 311  0.39140344 0.386842105 0.0970490605 0.6517969480
## 39   0.39364003 0.386842105 0.0976478175 0.6566817191
## 371  0.39511577 0.387719298 0.0978022388 0.6615841379
## 1448 0.39511577 0.387719298 0.0978022388 0.6615841379
## 1232 0.39435489 0.388596491 0.0973599345 0.6615841379
## 219  0.39359467 0.389473684 0.0969195923 0.6615841379
## 763  0.39283510 0.390350877 0.0964812014 0.6615841379
## 580  0.39207618 0.391228070 0.0960447510 0.6615841379
## 869  0.39131791 0.392105263 0.0956102306 0.6615841379
## 110  0.39356006 0.392105263 0.0962010669 0.6665042043
## 45   0.39280313 0.392982456 0.0957671754 0.6665042043
## 27   0.39204684 0.393859649 0.0953351954 0.6665042043
## 654  0.39129119 0.394736842 0.0949051165 0.6665042043
## 42   0.39353622 0.394736842 0.0954920585 0.6714419184
## 234  0.39578204 0.394736842 0.0960789642 0.6763972802
## 1305 0.39502844 0.395614035 0.0956482235 0.6763972802
## 478  0.39727578 0.395614035 0.0962338172 0.6813702896
## 1284 0.39652354 0.396491228 0.0958036947 0.6813702896
## 308  0.39577193 0.397368421 0.0953754503 0.6813702896
## 548  0.39502094 0.398245614 0.0949490736 0.6813702896
## 364  0.39427058 0.399122807 0.0945245547 0.6813702896
## 1018 0.39352083 0.400000000 0.0941018836 0.6813702896
## 203  0.39277170 0.400877193 0.0936810502 0.6813702896
## 1427 0.39202318 0.401754386 0.0932620447 0.6813702896
## 94   0.39127527 0.402631579 0.0928448573 0.6813702896
## 777  0.39352930 0.402631579 0.0934203730 0.6863609467
## 297  0.39278274 0.403508772 0.0930037510 0.6863609467
## 149  0.39503840 0.403508772 0.0935780117 0.6913692515
## 218  0.39729497 0.403508772 0.0941522550 0.6963952040
## 506  0.39655051 0.404385965 0.0937349652 0.6963952040
## 3    0.39580665 0.405263158 0.0933194719 0.6963952040
## 1012 0.39506338 0.406140351 0.0929057656 0.6963952040
## 524  0.39432071 0.407017544 0.0924938368 0.6963952040
## 787  0.39658125 0.407017544 0.0930631579 0.7014388041
## 946  0.39583994 0.407894737 0.0926517784 0.7014388041
## 496  0.39509922 0.408771930 0.0922421601 0.7014388041
## 1299 0.39435908 0.409649123 0.0918342935 0.7014388041
## 26   0.39361952 0.410526316 0.0914281694 0.7014388041
## 1429 0.39288054 0.411403509 0.0910237787 0.7014388041
## 68   0.39214214 0.412280702 0.0906211122 0.7014388041
## 433  0.39440831 0.412280702 0.0911831686 0.7065000519
## 1062 0.39367126 0.413157895 0.0907810170 0.7065000519
## 1316 0.39293478 0.414035088 0.0903805740 0.7065000519
## 1195 0.39520354 0.414035088 0.0909402450 0.7115789474
## 374  0.39747333 0.414035088 0.0914999233 0.7166754905
## 498  0.39673901 0.414912281 0.0910988003 0.7166754905
## 111  0.39600525 0.415789474 0.0906993727 0.7166754905
## 1050 0.39527206 0.416666667 0.0903016318 0.7166754905
## 1468 0.39453943 0.417543860 0.0899055686 0.7166754905
## 1376 0.39380735 0.418421053 0.0895111745 0.7166754905
## 486  0.39307581 0.419298246 0.0891184408 0.7166754905
## 1127 0.39234483 0.420175439 0.0887273589 0.7166754905
## 1293 0.39161439 0.421052632 0.0883379200 0.7166754905
## 1068 0.39088450 0.421929825 0.0879501158 0.7166754905
## 1132 0.39015513 0.422807018 0.0875639378 0.7166754905
## 414  0.38942631 0.423684211 0.0871793775 0.7166754905
## 945  0.38869801 0.424561404 0.0867964266 0.7166754905
## 1131 0.38797024 0.425438596 0.0864150768 0.7166754905
## 338  0.39025173 0.425438596 0.0869595476 0.7217896813
## 1439 0.38952532 0.426315789 0.0865786373 0.7217896813
## 791  0.38879943 0.427192982 0.0861993139 0.7217896813
## 632  0.38807405 0.428070175 0.0858215693 0.7217896813
## 61   0.39035922 0.428070175 0.0863626404 0.7269215198
## 973  0.38963521 0.428947368 0.0859853237 0.7269215198
## 1443 0.38891171 0.429824561 0.0856095719 0.7269215198
## 810  0.38818872 0.430701754 0.0852353771 0.7269215198
## 1049 0.38746623 0.431578947 0.0848627313 0.7269215198
## 1020 0.38674425 0.432456140 0.0844916267 0.7269215198
## 1342 0.38602278 0.433333333 0.0841220553 0.7269215198
## 1423 0.38530179 0.434210526 0.0837540093 0.7269215198
## 36   0.38458130 0.435087719 0.0833874810 0.7269215198
## 1449 0.38386131 0.435964912 0.0830224627 0.7269215198
## 201  0.38314179 0.436842105 0.0826589467 0.7269215198
## 1042 0.38242276 0.437719298 0.0822969253 0.7269215198
## 1096 0.38170422 0.438596491 0.0819363911 0.7269215198
## 974  0.38098615 0.439473684 0.0815773364 0.7269215198
## 239  0.38328374 0.439473684 0.0821038234 0.7320710059
## 268  0.38558262 0.439473684 0.0826303953 0.7372381397
## 866  0.38486678 0.440350877 0.0822705972 0.7372381397
## 943  0.38415143 0.441228070 0.0819122683 0.7372381397
## 796  0.38343654 0.442105263 0.0815554014 0.7372381397
## 1441 0.38272212 0.442982456 0.0811999889 0.7372381397
## 439  0.38200817 0.443859649 0.0808460237 0.7372381397
## 908  0.38129467 0.444736842 0.0804934985 0.7372381397
## 160  0.38058164 0.445614035 0.0801424059 0.7372381397
## 556  0.37986906 0.446491228 0.0797927390 0.7372381397
## 21   0.38217645 0.446491228 0.0803106295 0.7424229212
## 1015 0.38146523 0.447368421 0.0799612961 0.7424229212
## 571  0.38377492 0.447368421 0.0804782038 0.7476253504
## 1278 0.38306507 0.448245614 0.0801292043 0.7476253504
## 1010 0.38235568 0.449122807 0.0797816136 0.7476253504
## 164  0.38164673 0.450000000 0.0794354247 0.7476253504
## 1120 0.38093822 0.450877193 0.0790906307 0.7476253504
## 760  0.38023016 0.451754386 0.0787472247 0.7476253504
## 1115 0.37952253 0.452631579 0.0784051997 0.7476253504
## 911  0.37881533 0.453508772 0.0780645490 0.7476253504
## 523  0.37810857 0.454385965 0.0777252657 0.7476253504
## 764  0.37740223 0.455263158 0.0773873431 0.7476253504
## 255  0.37669632 0.456140351 0.0770507746 0.7476253504
## 1048 0.37599082 0.457017544 0.0767155533 0.7476253504
## 1095 0.37528575 0.457894737 0.0763816727 0.7476253504
## 1090 0.37760813 0.457894737 0.0768859025 0.7528454272
## 675  0.37993201 0.457894737 0.0773902588 0.7580831517
## 1186 0.37922927 0.458771930 0.0770556147 0.7580831517
## 922  0.37852695 0.459649123 0.0767223024 0.7580831517
## 67   0.38085429 0.459649123 0.0772246931 0.7633385238
## 784  0.38318318 0.459649123 0.0777272061 0.7686115437
## 242  0.38248323 0.460526316 0.0773931412 0.7686115437
## 489  0.38178370 0.461403509 0.0770603996 0.7686115437
## 653  0.38108458 0.462280702 0.0767289747 0.7686115437
## 1402 0.38038587 0.463157895 0.0763988602 0.7686115437
## 960  0.37968756 0.464035088 0.0760700497 0.7686115437
## 1363 0.37898966 0.464912281 0.0757425369 0.7686115437
## 91   0.38132611 0.464912281 0.0762389898 0.7739022111
## 1040 0.38062961 0.465789474 0.0759117462 0.7739022111
## 967  0.37993352 0.466666667 0.0755857899 0.7739022111
## 1421 0.37923782 0.467543860 0.0752611146 0.7739022111
## 574  0.38157895 0.467543860 0.0757546440 0.7792105263
## 531  0.38088467 0.468421053 0.0754302303 0.7792105263
## 703  0.38019078 0.469298246 0.0751070874 0.7792105263
## 402  0.37949727 0.470175439 0.0747852091 0.7792105263
## 1512 0.37880416 0.471052632 0.0744645895 0.7792105263
## 846  0.37811143 0.471929825 0.0741452224 0.7792105263
## 511  0.37741908 0.472807018 0.0738271018 0.7792105263
## 1162 0.37672710 0.473684211 0.0735102218 0.7792105263
## 1320 0.37603550 0.474561404 0.0731945764 0.7792105263
## 244  0.37534427 0.475438596 0.0728801598 0.7792105263
## 53   0.37769646 0.475438596 0.0733648002 0.7845364892
## 1370 0.37700666 0.476315789 0.0730506144 0.7845364892
## 984  0.37936167 0.476315789 0.0735344154 0.7898800997
## 1456 0.37867330 0.477192982 0.0732204612 0.7898800997
## 674  0.38103116 0.477192982 0.0737034251 0.7952413578
## 937  0.38034425 0.478070175 0.0733897033 0.7952413578
## 1028 0.37965769 0.478947368 0.0730771930 0.7952413578
## 71   0.37897151 0.479824561 0.0727658885 0.7952413578
## 33   0.38133445 0.479824561 0.0732460625 0.8006202637
## 197  0.38064972 0.480701754 0.0729349837 0.8006202637
## 1034 0.37996535 0.481578947 0.0726251012 0.8006202637
## 925  0.37928135 0.482456140 0.0723164096 0.8006202637
## 1054 0.37859770 0.483333333 0.0720089031 0.8006202637
## 700  0.37791440 0.484210526 0.0717025762 0.8006202637
## 995  0.37723145 0.485087719 0.0713974234 0.8006202637
## 867  0.37654884 0.485964912 0.0710934390 0.8006202637
## 1144 0.37586658 0.486842105 0.0707906177 0.8006202637
## 127  0.37755951 0.487719298 0.0709605992 0.8060168172
## 842  0.37755951 0.487719298 0.0709605992 0.8060168172
## 666  0.37687907 0.488596491 0.0706591334 0.8060168172
## 769  0.37619896 0.489473684 0.0703588163 0.8060168172
## 837  0.37551918 0.490350877 0.0700596425 0.8060168172
## 1287 0.37483974 0.491228070 0.0697616068 0.8060168172
## 1472 0.37416062 0.492105263 0.0694647037 0.8060168172
## 117  0.37348183 0.492982456 0.0691689281 0.8060168172
## 714  0.37280337 0.493859649 0.0688742747 0.8060168172
## 1151 0.37212522 0.494736842 0.0685807382 0.8060168172
## 955  0.37144739 0.495614035 0.0682883135 0.8060168172
## 1271 0.37383458 0.495614035 0.0687516268 0.8114310184
## 1031 0.37315824 0.496491228 0.0684593743 0.8114310184
## 1110 0.37248221 0.497368421 0.0681682253 0.8114310184
## 393  0.37487381 0.497368421 0.0686298566 0.8168628672
## 958  0.37419928 0.498245614 0.0683388776 0.8168628672
## 1014 0.37352506 0.499122807 0.0680489937 0.8168628672
## 910  0.37285116 0.500000000 0.0677601999 0.8168628672
## 954  0.37217755 0.500877193 0.0674724912 0.8168628672
## 848  0.37150425 0.501754386 0.0671858627 0.8168628672
## 1154 0.37083126 0.502631579 0.0669003093 0.8168628672
## 679  0.37323216 0.502631579 0.0673565923 0.8223123637
## 195  0.37256068 0.503508772 0.0670711943 0.8223123637
## 583  0.37188949 0.504385965 0.0667868635 0.8223123637
## 650  0.37121860 0.505263158 0.0665035949 0.8223123637
## 119  0.37362534 0.505263158 0.0669573342 0.8277795079
## 520  0.37295598 0.506140351 0.0666742160 0.8277795079
## 1314 0.37228692 0.507017544 0.0663921523 0.8277795079
## 1350 0.37161814 0.507894737 0.0661111383 0.8277795079
## 514  0.37094965 0.508771930 0.0658311691 0.8277795079
## 788  0.37336360 0.508771930 0.0662814899 0.8332642998
## 434  0.37269665 0.509649123 0.0660016634 0.8332642998
## 1060 0.37202999 0.510526316 0.0657228740 0.8332642998
## 404  0.37136362 0.511403509 0.0654451172 0.8332642998
## 543  0.37069752 0.512280702 0.0651683883 0.8332642998
## 156  0.37311883 0.512280702 0.0656153321 0.8387667393
## 58   0.37245429 0.513157895 0.0653387381 0.8387667393
## 933  0.37179004 0.514035088 0.0650631646 0.8387667393
## 1263 0.37421625 0.514035088 0.0655085356 0.8442868265
## 1247 0.37355357 0.514912281 0.0652330952 0.8442868265
## 683  0.37289117 0.515789474 0.0649586679 0.8442868265
## 816  0.37222904 0.516666667 0.0646852491 0.8442868265
## 1252 0.37156718 0.517543860 0.0644128343 0.8442868265
## 631  0.37090559 0.518421053 0.0641414189 0.8442868265
## 901  0.37024426 0.519298246 0.0638709985 0.8442868265
## 868  0.36958320 0.520175439 0.0636015686 0.8442868265
## 1160 0.36892239 0.521052632 0.0633331247 0.8442868265
## 518  0.36826183 0.521929825 0.0630656626 0.8442868265
## 833  0.36760153 0.522807018 0.0627991777 0.8442868265
## 1112 0.36694148 0.523684211 0.0625336657 0.8442868265
## 1359 0.36628167 0.524561404 0.0622691223 0.8442868265
## 738  0.36562211 0.525438596 0.0620055432 0.8442868265
## 1194 0.36806808 0.525438596 0.0624398021 0.8498245614
## 315  0.36741013 0.526315789 0.0621763254 0.8498245614
## 829  0.36675242 0.527192982 0.0619138062 0.8498245614
## 682  0.36920365 0.527192982 0.0623465733 0.8553799439
## 934  0.36854757 0.528070175 0.0620841551 0.8553799439
## 1173 0.36789172 0.528947368 0.0618226877 0.8553799439
## 647  0.36723612 0.529824561 0.0615621668 0.8553799439
## 1368 0.36658075 0.530701754 0.0613025882 0.8553799439
## 269  0.36904014 0.530701754 0.0617321813 0.8609529742
## 1258 0.36838641 0.531578947 0.0614726975 0.8609529742
## 1268 0.37084983 0.531578947 0.0619016691 0.8665436520
## 1511 0.37019777 0.532456140 0.0616422811 0.8665436520
## 1353 0.36954595 0.533333333 0.0613838264 0.8665436520
## 128  0.36889436 0.534210526 0.0611263011 0.8665436520
## 554  0.36824300 0.535087719 0.0608697009 0.8665436520
## 1056 0.36759187 0.535964912 0.0606140219 0.8665436520
## 836  0.36694097 0.536842105 0.0603592600 0.8665436520
## 348  0.36941573 0.536842105 0.0607834455 0.8721519776
## 542  0.36876652 0.537719298 0.0605287686 0.8721519776
## 517  0.36811753 0.538596491 0.0602750026 0.8721519776
## 1235 0.36746875 0.539473684 0.0600221433 0.8721519776
## 363  0.36682020 0.540350877 0.0597701869 0.8721519776
## 73   0.36930364 0.540350877 0.0601913013 0.8777779508
## 1365 0.36865680 0.541228070 0.0599394242 0.8777779508
## 669  0.36801017 0.542105263 0.0596884438 0.8777779508
## 48   0.37049942 0.542105263 0.0601081506 0.8834215717
## 118  0.36985454 0.542982456 0.0598572483 0.8834215717
## 1063 0.36920987 0.543859649 0.0596072366 0.8834215717
## 861  0.36856541 0.544736842 0.0593581117 0.8834215717
## 1044 0.36792116 0.545614035 0.0591098696 0.8834215717
## 845  0.36727713 0.546491228 0.0588625066 0.8834215717
## 49   0.36977692 0.546491228 0.0592783909 0.8890828402
## 1283 0.36913464 0.547368421 0.0590310984 0.8890828402
## 668  0.36849258 0.548245614 0.0587846790 0.8890828402
## 401  0.36785071 0.549122807 0.0585391290 0.8890828402
## 1420 0.36720905 0.550000000 0.0582944446 0.8890828402
## 912  0.36656759 0.550877193 0.0580506221 0.8890828402
## 261  0.36907820 0.550877193 0.0584627368 0.8947617565
## 686  0.36843853 0.551754386 0.0582189775 0.8947617565
## 252  0.36779905 0.552631579 0.0579760743 0.8947617565
## 1466 0.36715978 0.553508772 0.0577340236 0.8947617565
## 413  0.36652070 0.554385965 0.0574928218 0.8947617565
## 467  0.36588181 0.555263158 0.0572524651 0.8947617565
## 660  0.36524310 0.556140351 0.0570129500 0.8947617565
## 1276 0.36460458 0.557017544 0.0567742730 0.8947617565
## 864  0.36396625 0.557894737 0.0565364304 0.8947617565
## 999  0.36332809 0.558771930 0.0562994186 0.8947617565
## 860  0.36269012 0.559649123 0.0560632343 0.8947617565
## 420  0.36205231 0.560526316 0.0558278737 0.8947617565
## 403  0.36141468 0.561403509 0.0555933335 0.8947617565
## 1118 0.36077722 0.562280702 0.0553596102 0.8947617565
## 1025 0.36013992 0.563157895 0.0551267002 0.8947617565
## 289  0.36267651 0.563157895 0.0555280847 0.9004583204
## 643  0.36204106 0.564035088 0.0552952134 0.9004583204
## 1058 0.36140578 0.564912281 0.0550631502 0.9004583204
## 1467 0.36077066 0.565789474 0.0548318916 0.9004583204
## 1023 0.36013569 0.566666667 0.0546014344 0.9004583204
## 55   0.35950089 0.567543860 0.0543717750 0.9004583204
## 1022 0.35886624 0.568421053 0.0541429102 0.9004583204
## 1366 0.35823175 0.569298246 0.0539148366 0.9004583204
## 504  0.35759740 0.570175439 0.0536875509 0.9004583204
## 1024 0.35696320 0.571052632 0.0534610497 0.9004583204
## 930  0.35632915 0.571929825 0.0532353298 0.9004583204
## 1471 0.35569523 0.572807018 0.0530103880 0.9004583204
## 1182 0.35506146 0.573684211 0.0527862208 0.9004583204
## 114  0.35442782 0.574561404 0.0525628252 0.9004583204
## 862  0.35379431 0.575438596 0.0523401978 0.9004583204
## 59   0.35316094 0.576315789 0.0521183355 0.9004583204
## 418  0.35252769 0.577192982 0.0518972350 0.9004583204
## 827  0.35189457 0.578070175 0.0516768933 0.9004583204
## 1317 0.35126157 0.578947368 0.0514573070 0.9004583204
## 450  0.35062868 0.579824561 0.0512384732 0.9004583204
## 513  0.34999592 0.580701754 0.0510203886 0.9004583204
## 1199 0.35257074 0.580701754 0.0514069205 0.9061725319
## 1021 0.35193990 0.581578947 0.0511888428 0.9061725319
## 279  0.35130918 0.582456140 0.0509715098 0.9061725319
## 516  0.35067857 0.583333333 0.0507549182 0.9061725319
## 1026 0.35004807 0.584210526 0.0505390649 0.9061725319
## 951  0.34941768 0.585087719 0.0503239471 0.9061725319
## 734  0.34878740 0.585964912 0.0501095615 0.9061725319
## 1126 0.34815722 0.586842105 0.0498959052 0.9061725319
## 635  0.34752714 0.587719298 0.0496829751 0.9061725319
## 652  0.34689716 0.588596491 0.0494707683 0.9061725319
## 515  0.34626727 0.589473684 0.0492592819 0.9061725319
## 1369 0.34563747 0.590350877 0.0490485127 0.9061725319
## 310  0.34500776 0.591228070 0.0488384579 0.9061725319
## 752  0.34437814 0.592105263 0.0486291146 0.9061725319
## 1225 0.34374860 0.592982456 0.0484204798 0.9061725319
## 248  0.34311914 0.593859649 0.0482125506 0.9061725319
## 1124 0.34248976 0.594736842 0.0480053241 0.9061725319
## 1204 0.34186045 0.595614035 0.0477987975 0.9061725319
## 1123 0.34123121 0.596491228 0.0475929679 0.9061725319
## 254  0.34060204 0.597368421 0.0473878324 0.9061725319
## 1122 0.33997294 0.598245614 0.0471833882 0.9061725319
## 411  0.33934390 0.599122807 0.0469796324 0.9061725319
## 1206 0.33871492 0.600000000 0.0467765624 0.9061725319
## 820  0.33808599 0.600877193 0.0465741752 0.9061725319
## 747  0.33745712 0.601754386 0.0463724682 0.9061725319
## 447  0.33682830 0.602631579 0.0461714385 0.9061725319
## 9    0.33619953 0.603508772 0.0459710833 0.9061725319
## 1197 0.33882754 0.603508772 0.0463391846 0.9119043912
## 856  0.33820081 0.604385965 0.0461388015 0.9119043912
## 72   0.33757414 0.605263158 0.0459390889 0.9119043912
## 313  0.33694751 0.606140351 0.0457400442 0.9119043912
## 811  0.33632092 0.607017544 0.0455416646 0.9119043912
## 896  0.33896101 0.607017544 0.0459072818 0.9176538981
## 1383 0.33833652 0.607894737 0.0457088716 0.9176538981
## 1347 0.33771206 0.608771930 0.0455111226 0.9176538981
## 408  0.33708766 0.609649123 0.0453140320 0.9176538981
## 990  0.33646329 0.610526316 0.0451175974 0.9176538981
## 451  0.33583895 0.611403509 0.0449218160 0.9176538981
## 903  0.33521465 0.612280702 0.0447266852 0.9176538981
## 449  0.33459038 0.613157895 0.0445322023 0.9176538981
## 409  0.33396614 0.614035088 0.0443383649 0.9176538981
## 6    0.33334192 0.614912281 0.0441451702 0.9176538981
## 415  0.33271772 0.615789474 0.0439526158 0.9176538981
## 953  0.33209354 0.616666667 0.0437606990 0.9176538981
## 307  0.33146937 0.617543860 0.0435694174 0.9176538981
## 406  0.33084522 0.618421053 0.0433787683 0.9176538981
## 1364 0.33022108 0.619298246 0.0431887492 0.9176538981
## 419  0.32959694 0.620175439 0.0429993577 0.9176538981
## 108  0.32897280 0.621052632 0.0428105912 0.9176538981
## 405  0.32834867 0.621929825 0.0426224473 0.9176538981
## 132  0.32772453 0.622807018 0.0424349234 0.9176538981
## 445  0.32710039 0.623684211 0.0422480171 0.9176538981
## 7    0.32647624 0.624561404 0.0420617260 0.9176538981
## 412  0.32585207 0.625438596 0.0418760476 0.9176538981
## 1290 0.32522789 0.626315789 0.0416909794 0.9176538981
## 1367 0.32460369 0.627192982 0.0415065191 0.9176538981
## 947  0.32397947 0.628070175 0.0413226642 0.9176538981
## 312  0.32335523 0.628947368 0.0411394124 0.9176538981
## 994  0.32273095 0.629824561 0.0409567613 0.9176538981
## 936  0.32210665 0.630701754 0.0407747084 0.9176538981
## 19   0.32148231 0.631578947 0.0405932515 0.9176538981
## 1362 0.32085794 0.632456140 0.0404123881 0.9176538981
## 900  0.32023352 0.633333333 0.0402321160 0.9176538981
## 952  0.31960906 0.634210526 0.0400524328 0.9176538981
## 726  0.31898455 0.635087719 0.0398733362 0.9176538981
## 1361 0.31836000 0.635964912 0.0396948239 0.9176538981
## 824  0.31773538 0.636842105 0.0395168936 0.9176538981
## 417  0.31711072 0.637719298 0.0393395430 0.9176538981
## 444  0.31648599 0.638596491 0.0391627699 0.9176538981
## 948  0.31586120 0.639473684 0.0389865719 0.9176538981
## 314  0.31523634 0.640350877 0.0388109468 0.9176538981
## 1201 0.31796464 0.640350877 0.0391515359 0.9234210526
## 500  0.31734209 0.641228070 0.0389758410 0.9234210526
## 305  0.31671948 0.642105263 0.0388007158 0.9234210526
## 736  0.31609681 0.642982456 0.0386261582 0.9234210526
## 1286 0.31547406 0.643859649 0.0384521658 0.9234210526
## 446  0.31485124 0.644736842 0.0382787366 0.9234210526
## 193  0.31422834 0.645614035 0.0381058683 0.9234210526
## 663  0.31360536 0.646491228 0.0379335588 0.9234210526
## 1526 0.31298230 0.647368421 0.0377618058 0.9234210526
## 1452 0.31235915 0.648245614 0.0375906073 0.9234210526
## 1289 0.31173591 0.649122807 0.0374199610 0.9234210526
## 1291 0.31111258 0.650000000 0.0372498648 0.9234210526
## 1203 0.31048915 0.650877193 0.0370803166 0.9234210526
## 629  0.30986562 0.651754386 0.0369113143 0.9234210526
## 733  0.30924198 0.652631579 0.0367428557 0.9234210526
## 914  0.30861824 0.653508772 0.0365749388 0.9234210526
## 968  0.30799438 0.654385965 0.0364075615 0.9234210526
## 617  0.30737041 0.655263158 0.0362407216 0.9234210526
## 1    0.30674632 0.656140351 0.0360744172 0.9234210526
## 691  0.30612212 0.657017544 0.0359086461 0.9234210526
## 302  0.30549778 0.657894737 0.0357434063 0.9234210526
## 246  0.30487332 0.658771930 0.0355786957 0.9234210526
## 330  0.30765898 0.658771930 0.0359064569 0.9292058549
## 206  0.30703700 0.659649123 0.0357416605 0.9292058549
## 381  0.30983067 0.659649123 0.0360691603 0.9350083048
## 1202 0.30921121 0.660526316 0.0359042794 0.9350083048
## 384  0.31201298 0.660526316 0.0362315171 0.9408284024
## 755  0.31139609 0.661403509 0.0360665528 0.9408284024
## 712  0.31077909 0.662280702 0.0359021134 0.9408284024
## 1222 0.31016197 0.663157895 0.0357381968 0.9408284024
## 737  0.30954474 0.664035088 0.0355748011 0.9408284024
## 762  0.30892739 0.664912281 0.0354119242 0.9408284024
## 292  0.30830991 0.665789474 0.0352495643 0.9408284024
## 684  0.30769231 0.666666667 0.0350877193 0.9408284024
## 972  0.30707457 0.667543860 0.0349263873 0.9408284024
## 537  0.30645670 0.668421053 0.0347655663 0.9408284024
## 535  0.30583870 0.669298246 0.0346052544 0.9408284024
## 828  0.30522055 0.670175439 0.0344454497 0.9408284024
## 1288 0.30460225 0.671052632 0.0342861501 0.9408284024
## 825  0.30398381 0.671929825 0.0341273540 0.9408284024
## 1253 0.30336522 0.672807018 0.0339690592 0.9408284024
## 454  0.30274647 0.673684211 0.0338112639 0.9408284024
## 920  0.30212756 0.674561404 0.0336539663 0.9408284024
## 1153 0.30150848 0.675438596 0.0334971645 0.9408284024
## 1254 0.30088924 0.676315789 0.0333408565 0.9408284024
## 1001 0.30026983 0.677192982 0.0331850405 0.9408284024
## 257  0.30313058 0.677192982 0.0335012737 0.9466661476
## 351  0.30251393 0.678070175 0.0333453624 0.9466661476
## 1128 0.30189712 0.678947368 0.0331899406 0.9466661476
## 105  0.30128013 0.679824561 0.0330350065 0.9466661476
## 620  0.30066297 0.680701754 0.0328805582 0.9466661476
## 541  0.30004564 0.681578947 0.0327265939 0.9466661476
## 1183 0.29942813 0.682456140 0.0325731117 0.9466661476
## 1453 0.29881043 0.683333333 0.0324201100 0.9466661476
## 1177 0.29819254 0.684210526 0.0322675868 0.9466661476
## 630  0.29757447 0.685087719 0.0321155404 0.9466661476
## 1515 0.29695619 0.685964912 0.0319639691 0.9466661476
## 249  0.29633772 0.686842105 0.0318128709 0.9466661476
## 47   0.29571905 0.687719298 0.0316622443 0.9466661476
## 1176 0.29510016 0.688596491 0.0315120873 0.9466661476
## 1219 0.29448107 0.689473684 0.0313623983 0.9466661476
## 23   0.29739060 0.689473684 0.0316709063 0.9525215405
## 115  0.29677444 0.690350877 0.0315211149 0.9525215405
## 1301 0.29615808 0.691228070 0.0313717891 0.9525215405
## 773  0.29554151 0.692105263 0.0312229272 0.9525215405
## 1244 0.29492473 0.692982456 0.0310745274 0.9525215405
## 1307 0.29430774 0.693859649 0.0309265881 0.9525215405
## 915  0.29369052 0.694736842 0.0307791076 0.9525215405
## 1327 0.29307308 0.695614035 0.0306320841 0.9525215405
## 81   0.29601173 0.695614035 0.0309370022 0.9583945811
## 1371 0.29539735 0.696491228 0.0307898739 0.9583945811
## 823  0.29478276 0.697368421 0.0306432004 0.9583945811
## 207  0.29416794 0.698245614 0.0304969800 0.9583945811
## 303  0.29355289 0.699122807 0.0303512111 0.9583945811
## 251  0.29293762 0.700000000 0.0302058919 0.9583945811
## 355  0.29232211 0.700877193 0.0300610208 0.9583945811
## 1324 0.29170637 0.701754386 0.0299165962 0.9583945811
## 621  0.29109038 0.702631579 0.0297726165 0.9583945811
## 1524 0.29047415 0.703508772 0.0296290799 0.9583945811
## 464  0.28985767 0.704385965 0.0294859849 0.9583945811
## 965  0.28924094 0.705263158 0.0293433298 0.9583945811
## 1100 0.28862395 0.706140351 0.0292011131 0.9583945811
## 1057 0.28800670 0.707017544 0.0290593331 0.9583945811
## 1444 0.28738918 0.707894737 0.0289179882 0.9583945811
## 1111 0.28677139 0.708771930 0.0287770769 0.9583945811
## 1211 0.28615333 0.709649123 0.0286365975 0.9583945811
## 826  0.28553498 0.710526316 0.0284965485 0.9583945811
## 1528 0.28491636 0.711403509 0.0283569283 0.9583945811
## 1102 0.28429745 0.712280702 0.0282177354 0.9583945811
## 280  0.28730875 0.712280702 0.0285125740 0.9642852694
## 113  0.28669318 0.713157895 0.0283732680 0.9642852694
## 508  0.28607733 0.714035088 0.0282343871 0.9642852694
## 639  0.28546120 0.714912281 0.0280959298 0.9642852694
## 1148 0.28484478 0.715789474 0.0279578947 0.9642852694
## 1484 0.28422807 0.716666667 0.0278202802 0.9642852694
## 1035 0.28361106 0.717543860 0.0276830847 0.9642852694
## 1138 0.28299375 0.718421053 0.0275463068 0.9642852694
## 1004 0.28237614 0.719298246 0.0274099449 0.9642852694
## 1139 0.28175821 0.720175439 0.0272739976 0.9642852694
## 1209 0.28113998 0.721052632 0.0271384632 0.9642852694
## 1401 0.28052142 0.721929825 0.0270033404 0.9642852694
## 1473 0.27990255 0.722807018 0.0268686276 0.9642852694
## 1434 0.27928334 0.723684211 0.0267343234 0.9642852694
## 1073 0.27866380 0.724561404 0.0266004263 0.9642852694
## 1338 0.27804393 0.725438596 0.0264669349 0.9642852694
## 1146 0.27742372 0.726315789 0.0263338476 0.9642852694
## 304  0.27680316 0.727192982 0.0262011630 0.9642852694
## 696  0.27618224 0.728070175 0.0260688796 0.9642852694
## 1308 0.27556098 0.728947368 0.0259369961 0.9642852694
## 1518 0.27493935 0.729824561 0.0258055110 0.9642852694
## 730  0.27431736 0.730701754 0.0256744228 0.9642852694
## 758  0.27369499 0.731578947 0.0255437302 0.9642852694
## 1229 0.27307225 0.732456140 0.0254134317 0.9642852694
## 492  0.27244914 0.733333333 0.0252835259 0.9642852694
## 716  0.27182563 0.734210526 0.0251540114 0.9642852694
## 1435 0.27120174 0.735087719 0.0250248869 0.9642852694
## 106  0.27057745 0.735964912 0.0248961508 0.9642852694
## 659  0.26995276 0.736842105 0.0247678019 0.9642852694
## 1280 0.26932767 0.737719298 0.0246398387 0.9642852694
## 799  0.26870216 0.738596491 0.0245122598 0.9642852694
## 989  0.26807624 0.739473684 0.0243850640 0.9642852694
## 112  0.26744990 0.740350877 0.0242582498 0.9642852694
## 1310 0.26682313 0.741228070 0.0241318159 0.9642852694
## 501  0.26619593 0.742105263 0.0240057610 0.9642852694
## 1234 0.26556830 0.742982456 0.0238800836 0.9642852694
## 877  0.26494022 0.743859649 0.0237547825 0.9642852694
## 221  0.26810350 0.743859649 0.0240312688 0.9701936053
## 1486 0.26747938 0.744736842 0.0239058412 0.9701936053
## 291  0.26685483 0.745614035 0.0237807882 0.9701936053
## 1340 0.26622984 0.746491228 0.0236561084 0.9701936053
## 809  0.26560441 0.747368421 0.0235318005 0.9701936053
## 1007 0.26497854 0.748245614 0.0234078632 0.9701936053
## 1216 0.26435222 0.749122807 0.0232842952 0.9701936053
## 466  0.26372543 0.750000000 0.0231610952 0.9701936053
## 840  0.26309819 0.750877193 0.0230382619 0.9701936053
## 1488 0.26247047 0.751754386 0.0229157941 0.9701936053
## 1037 0.26184228 0.752631579 0.0227936903 0.9701936053
## 519  0.26121362 0.753508772 0.0226719494 0.9701936053
## 1275 0.26058446 0.754385965 0.0225505701 0.9701936053
## 1432 0.25995482 0.755263158 0.0224295510 0.9701936053
## 606  0.25932467 0.756140351 0.0223088910 0.9701936053
## 800  0.25869403 0.757017544 0.0221885888 0.9701936053
## 1303 0.25806287 0.757894737 0.0220686431 0.9701936053
## 918  0.25743120 0.758771930 0.0219490526 0.9701936053
## 1436 0.25679900 0.759649123 0.0218298162 0.9701936053
## 875  0.25616628 0.760526316 0.0217109326 0.9701936053
## 54   0.25553303 0.761403509 0.0215924005 0.9701936053
## 116  0.25489923 0.762280702 0.0214742188 0.9701936053
## 586  0.25426489 0.763157895 0.0213563862 0.9701936053
## 493  0.25363000 0.764035088 0.0212389014 0.9701936053
## 607  0.25299455 0.764912281 0.0211217633 0.9701936053
## 759  0.25235853 0.765789474 0.0210049707 0.9701936053
## 295  0.25172194 0.766666667 0.0208885224 0.9701936053
## 104  0.25108477 0.767543860 0.0207724172 0.9701936053
## 1179 0.25044701 0.768421053 0.0206566538 0.9701936053
## 589  0.24980866 0.769298246 0.0205412311 0.9701936053
## 1346 0.24916972 0.770175439 0.0204261479 0.9701936053
## 174  0.24853017 0.771052632 0.0203114030 0.9701936053
## 549  0.24789000 0.771929825 0.0201969953 0.9701936053
## 44   0.24724922 0.772807018 0.0200829236 0.9701936053
## 1233 0.24660781 0.773684211 0.0199691867 0.9701936053
## 605  0.24596576 0.774561404 0.0198557835 0.9701936053
## 465  0.24532308 0.775438596 0.0197427128 0.9701936053
## 913  0.24467974 0.776315789 0.0196299735 0.9701936053
## 1083 0.24803505 0.776315789 0.0198889474 0.9761195889
## 536  0.24739657 0.777192982 0.0197760722 0.9761195889
## 1409 0.24675745 0.778070175 0.0196635270 0.9761195889
## 309  0.24611770 0.778947368 0.0195513107 0.9761195889
## 1416 0.24547731 0.779824561 0.0194394221 0.9761195889
## 1415 0.24483626 0.780701754 0.0193278601 0.9761195889
## 1077 0.24419456 0.781578947 0.0192166235 0.9761195889
## 143  0.24759554 0.781578947 0.0194732144 0.9820632202
## 166  0.24695896 0.782456140 0.0193618419 0.9820632202
## 1470 0.24632174 0.783333333 0.0192507935 0.9820632202
## 1381 0.24568388 0.784210526 0.0191400681 0.9820632202
## 1061 0.24504536 0.785087719 0.0190296646 0.9820632202
## 1231 0.24440619 0.785964912 0.0189195820 0.9820632202
## 880  0.24376635 0.786842105 0.0188098191 0.9820632202
## 1417 0.24312584 0.787719298 0.0187003748 0.9820632202
## 1378 0.24248464 0.788596491 0.0185912480 0.9820632202
## 194  0.24184276 0.789473684 0.0184824377 0.9820632202
## 1344 0.24120018 0.790350877 0.0183739428 0.9820632202
## 327  0.24055690 0.791228070 0.0182657621 0.9820632202
## 551  0.23991290 0.792105263 0.0181578947 0.9820632202
## 1075 0.23926818 0.792982456 0.0180503395 0.9820632202
## 560  0.23862273 0.793859649 0.0179430954 0.9820632202
## 645  0.23797655 0.794736842 0.0178361613 0.9820632202
## 1080 0.23732962 0.795614035 0.0177295362 0.9820632202
## 1413 0.23668194 0.796491228 0.0176232191 0.9820632202
## 1348 0.23603350 0.797368421 0.0175172088 0.9820632202
## 1279 0.23538428 0.798245614 0.0174115044 0.9820632202
## 881  0.23473429 0.799122807 0.0173061049 0.9820632202
## 1490 0.23408351 0.800000000 0.0172010091 0.9820632202
## 150  0.23343193 0.800877193 0.0170962161 0.9820632202
## 1412 0.23277955 0.801754386 0.0169917249 0.9820632202
## 805  0.23212636 0.802631579 0.0168875344 0.9820632202
## 167  0.23147234 0.803508772 0.0167836435 0.9820632202
## 935  0.23081749 0.804385965 0.0166800514 0.9820632202
## 593  0.23016180 0.805263158 0.0165767570 0.9820632202
## 1410 0.22950525 0.806140351 0.0164737593 0.9820632202
## 79   0.22884785 0.807017544 0.0163710572 0.9820632202
## 1109 0.22818957 0.807894737 0.0162686499 0.9820632202
## 199  0.22753042 0.808771930 0.0161665362 0.9820632202
## 1414 0.22687038 0.809649123 0.0160647153 0.9820632202
## 646  0.22620943 0.810526316 0.0159631861 0.9820632202
## 577  0.22554758 0.811403509 0.0158619477 0.9820632202
## 357  0.22488481 0.812280702 0.0157609990 0.9820632202
## 1328 0.22422111 0.813157895 0.0156603392 0.9820632202
## 628  0.22355646 0.814035088 0.0155599672 0.9820632202
## 756  0.22289087 0.814912281 0.0154598820 0.9820632202
## 806  0.22222431 0.815789474 0.0153600828 0.9820632202
## 463  0.22155679 0.816666667 0.0152605686 0.9820632202
## 1108 0.22088828 0.817543860 0.0151613384 0.9820632202
## 358  0.22021877 0.818421053 0.0150623913 0.9820632202
## 552  0.21954826 0.819298246 0.0149637262 0.9820632202
## 461  0.21887673 0.820175439 0.0148653424 0.9820632202
## 359  0.21820417 0.821052632 0.0147672388 0.9820632202
## 1493 0.21753057 0.821929825 0.0146694145 0.9820632202
## 361  0.21685592 0.822807018 0.0145718686 0.9820632202
## 1323 0.21618021 0.823684211 0.0144746002 0.9820632202
## 1326 0.21550342 0.824561404 0.0143776083 0.9820632202
## 1345 0.21482554 0.825438596 0.0142808920 0.9820632202
## 499  0.21414657 0.826315789 0.0141844504 0.9820632202
## 627  0.21346647 0.827192982 0.0140882826 0.9820632202
## 356  0.21278526 0.828070175 0.0139923877 0.9820632202
## 822  0.21210290 0.828947368 0.0138967648 0.9820632202
## 899  0.21141939 0.829824561 0.0138014130 0.9820632202
## 644  0.21073472 0.830701754 0.0137063314 0.9820632202
## 360  0.21004887 0.831578947 0.0136115190 0.9820632202
## 852  0.20936182 0.832456140 0.0135169751 0.9820632202
## 754  0.20867357 0.833333333 0.0134226986 0.9820632202
## 1321 0.20798410 0.834210526 0.0133286889 0.9820632202
## 720  0.20729340 0.835087719 0.0132349448 0.9820632202
## 165  0.20660145 0.835964912 0.0131414657 0.9820632202
## 717  0.20590823 0.836842105 0.0130482506 0.9820632202
## 642  0.20521374 0.837719298 0.0129552986 0.9820632202
## 387  0.20909671 0.837719298 0.0131845585 0.9880244991
## 350  0.20841020 0.838596491 0.0130914619 0.9880244991
## 1322 0.20772246 0.839473684 0.0129986275 0.9880244991
## 1143 0.20703347 0.840350877 0.0129060544 0.9880244991
## 1145 0.20634322 0.841228070 0.0128137418 0.9880244991
## 970  0.20565170 0.842105263 0.0127216888 0.9880244991
## 1447 0.20495889 0.842982456 0.0126298946 0.9880244991
## 512  0.20426477 0.843859649 0.0125383582 0.9880244991
## 1142 0.20356933 0.844736842 0.0124470790 0.9880244991
## 876  0.20287256 0.845614035 0.0123560560 0.9880244991
## 1125 0.20217443 0.846491228 0.0122652884 0.9880244991
## 636  0.20147493 0.847368421 0.0121747754 0.9880244991
## 245  0.20077405 0.848245614 0.0120845161 0.9880244991
## 772  0.20007177 0.849122807 0.0119945097 0.9880244991
## 597  0.19936807 0.850000000 0.0119047554 0.9880244991
## 1053 0.19866293 0.850877193 0.0118152524 0.9880244991
## 1121 0.19795634 0.851754386 0.0117259998 0.9880244991
## 1072 0.19724828 0.852631579 0.0116369969 0.9880244991
## 1074 0.19653873 0.853508772 0.0115482428 0.9880244991
## 664  0.19582767 0.854385965 0.0114597367 0.9880244991
## 1380 0.19511509 0.855263158 0.0113714778 0.9880244991
## 559  0.19440096 0.856140351 0.0112834653 0.9880244991
## 718  0.19368527 0.857017544 0.0111956985 0.9880244991
## 70   0.19296800 0.857894737 0.0111081764 0.9880244991
## 604  0.19224912 0.858771930 0.0110208984 0.9880244991
## 539  0.19152862 0.859649123 0.0109338636 0.9880244991
## 316  0.19080648 0.860526316 0.0108470712 0.9880244991
## 705  0.19008268 0.861403509 0.0107605206 0.9880244991
## 966  0.18935719 0.862280702 0.0106742108 0.9880244991
## 588  0.18862999 0.863157895 0.0105881411 0.9880244991
## 1230 0.18790106 0.864035088 0.0105023107 0.9880244991
## 917  0.18717039 0.864912281 0.0104167189 0.9880244991
## 1165 0.18643794 0.865789474 0.0103313649 0.9880244991
## 529  0.18570370 0.866666667 0.0102462480 0.9880244991
## 50   0.18496763 0.867543860 0.0101613673 0.9880244991
## 798  0.18422973 0.868421053 0.0100767221 0.9880244991
## 557  0.18348995 0.869298246 0.0099923116 0.9880244991
## 941  0.18274829 0.870175439 0.0099081352 0.9880244991
## 1156 0.18200471 0.871052632 0.0098241920 0.9880244991
## 1379 0.18125918 0.871929825 0.0097404813 0.9880244991
## 739  0.18051169 0.872807018 0.0096570023 0.9880244991
## 1403 0.17976220 0.873684211 0.0095737544 0.9880244991
## 1147 0.17901070 0.874561404 0.0094907367 0.9880244991
## 438  0.17825714 0.875438596 0.0094079486 0.9880244991
## 619  0.17750150 0.876315789 0.0093253892 0.9880244991
## 1166 0.17674376 0.877192982 0.0092430580 0.9880244991
## 843  0.17598389 0.878070175 0.0091609541 0.9880244991
## 129  0.17522185 0.878947368 0.0090790768 0.9880244991
## 929  0.17445762 0.879824561 0.0089974254 0.9880244991
## 590  0.17369116 0.880701754 0.0089159991 0.9880244991
## 719  0.17292245 0.881578947 0.0088347974 0.9880244991
## 1149 0.17215145 0.882456140 0.0087538193 0.9880244991
## 1339 0.17137813 0.883333333 0.0086730643 0.9880244991
## 667  0.17060245 0.884210526 0.0085925316 0.9880244991
## 658  0.16982439 0.885087719 0.0085122206 0.9880244991
## 183  0.16904390 0.885964912 0.0084321304 0.9880244991
## 884  0.17362092 0.885964912 0.0086405347 0.9940034257
## 841  0.17285414 0.886842105 0.0085602981 0.9940034257
## 1523 0.17208505 0.887719298 0.0084802816 0.9940034257
## 1525 0.17131362 0.888596491 0.0084004847 0.9940034257
## 1455 0.17053982 0.889473684 0.0083209066 0.9940034257
## 1465 0.16976362 0.890350877 0.0082415465 0.9940034257
## 971  0.16898497 0.891228070 0.0081624040 0.9940034257
## 665  0.16820385 0.892105263 0.0080834781 0.9940034257
## 558  0.16742021 0.892982456 0.0080047683 0.9940034257
## 1489 0.16663402 0.893859649 0.0079262739 0.9940034257
## 743  0.16584523 0.894736842 0.0078479942 0.9940034257
## 699  0.16505382 0.895614035 0.0077699284 0.9940034257
## 1385 0.16425974 0.896491228 0.0076920761 0.9940034257
## 813  0.16346295 0.897368421 0.0076144364 0.9940034257
## 1218 0.16266340 0.898245614 0.0075370087 0.9940034257
## 1433 0.16186106 0.899122807 0.0074597923 0.9940034257
## 1038 0.16105588 0.900000000 0.0073827866 0.9940034257
## 707  0.16024781 0.900877193 0.0073059910 0.9940034257
## 4    0.15943681 0.901754386 0.0072294047 0.9940034257
## 844  0.15862284 0.902631579 0.0071530270 0.9940034257
## 1213 0.15780584 0.903508772 0.0070768575 0.9940034257
## 1217 0.15698577 0.904385965 0.0070008953 0.9940034257
## 819  0.15616257 0.905263158 0.0069251398 0.9940034257
## 1446 0.15533619 0.906140351 0.0068495905 0.9940034257
## 1170 0.15450658 0.907017544 0.0067742466 0.9940034257
## 932  0.15367369 0.907894737 0.0066991075 0.9940034257
## 1274 0.15283746 0.908771930 0.0066241726 0.9940034257
## 505  0.15199783 0.909649123 0.0065494412 0.9940034257
## 776  0.15713991 0.909649123 0.0067485993 1.0000000000
## 1043 0.15632047 0.910526316 0.0066737221 1.0000000000
## 1169 0.15549787 0.911403509 0.0065990479 1.0000000000
## 1003 0.15467206 0.912280702 0.0065245759 1.0000000000
## 1386 0.15384297 0.913157895 0.0064503056 1.0000000000
## 701  0.15301056 0.914035088 0.0063762363 1.0000000000
## 443  0.15217477 0.914912281 0.0063023674 1.0000000000
## 1251 0.15133554 0.915789474 0.0062286983 1.0000000000
## 698  0.15049280 0.916666667 0.0061552283 1.0000000000
## 468  0.14964651 0.917543860 0.0060819569 1.0000000000
## 1522 0.14879659 0.918421053 0.0060088834 1.0000000000
## 695  0.14794298 0.919298246 0.0059360072 1.0000000000
## 1516 0.14708561 0.920175439 0.0058633277 1.0000000000
## 767  0.14622441 0.921052632 0.0057908443 1.0000000000
## 460  0.14535932 0.921929825 0.0057185564 1.0000000000
## 1519 0.14449026 0.922807018 0.0056464634 1.0000000000
## 1036 0.14361716 0.923684211 0.0055745646 1.0000000000
## 1210 0.14273994 0.924561404 0.0055028595 1.0000000000
## 1312 0.14185852 0.925438596 0.0054313476 1.0000000000
## 1164 0.14097282 0.926315789 0.0053600281 1.0000000000
## 40   0.14008275 0.927192982 0.0052889005 1.0000000000
## 638  0.13918823 0.928070175 0.0052179642 1.0000000000
## 1250 0.13828918 0.928947368 0.0051472186 1.0000000000
## 1257 0.13738549 0.929824561 0.0050766631 1.0000000000
## 205  0.13647708 0.930701754 0.0050062972 1.0000000000
## 1000 0.13556384 0.931578947 0.0049361203 1.0000000000
## 416  0.13464568 0.932456140 0.0048661317 1.0000000000
## 1167 0.13372249 0.933333333 0.0047963309 1.0000000000
## 1185 0.13279417 0.934210526 0.0047267174 1.0000000000
## 503  0.13186060 0.935087719 0.0046572905 1.0000000000
## 1256 0.13092167 0.935964912 0.0045880498 1.0000000000
## 1184 0.12997726 0.936842105 0.0045189945 1.0000000000
## 1249 0.12902724 0.937719298 0.0044501242 1.0000000000
## 594  0.12807149 0.938596491 0.0043814382 1.0000000000
## 1163 0.12710988 0.939473684 0.0043129361 1.0000000000
## 1220 0.12614227 0.940350877 0.0042446172 1.0000000000
## 697  0.12516852 0.941228070 0.0041764810 1.0000000000
## 293  0.12418848 0.942105263 0.0041085270 1.0000000000
## 1006 0.12320200 0.942982456 0.0040407545 1.0000000000
## 561  0.12220891 0.943859649 0.0039731631 1.0000000000
## 587  0.12120906 0.944736842 0.0039057522 1.0000000000
## 731  0.12020228 0.945614035 0.0038385212 1.0000000000
## 808  0.11918837 0.946491228 0.0037714696 1.0000000000
## 1277 0.11816717 0.947368421 0.0037045968 1.0000000000
## 97   0.11713847 0.948245614 0.0036379023 1.0000000000
## 1461 0.11610207 0.949122807 0.0035713855 1.0000000000
## 641  0.11505776 0.950000000 0.0035050460 1.0000000000
## 1188 0.11400533 0.950877193 0.0034388832 1.0000000000
## 1454 0.11294453 0.951754386 0.0033728965 1.0000000000
## 969  0.11187514 0.952631579 0.0033070854 1.0000000000
## 1002 0.11079689 0.953508772 0.0032414494 1.0000000000
## 1491 0.10970952 0.954385965 0.0031759879 1.0000000000
## 1311 0.10861277 0.955263158 0.0031107004 1.0000000000
## 1302 0.10750633 0.956140351 0.0030455865 1.0000000000
## 883  0.10638990 0.957017544 0.0029806455 1.0000000000
## 988  0.10526316 0.957894737 0.0029158769 1.0000000000
## 1224 0.10412577 0.958771930 0.0028512803 1.0000000000
## 1187 0.10297738 0.959649123 0.0027868551 1.0000000000
## 735  0.10181761 0.960526316 0.0027226008 1.0000000000
## 859  0.10064607 0.961403509 0.0026585169 1.0000000000
## 1047 0.09946233 0.962280702 0.0025946028 1.0000000000
## 905  0.09826595 0.963157895 0.0025308581 1.0000000000
## 740  0.09705646 0.964035088 0.0024672822 1.0000000000
## 1255 0.09583337 0.964912281 0.0024038746 1.0000000000
## 634  0.09459613 0.965789474 0.0023406349 1.0000000000
## 1384 0.09334418 0.966666667 0.0022775625 1.0000000000
## 850  0.09079372 0.968421053 0.0021519178 1.0000000000
## 878  0.09079372 0.968421053 0.0021519178 1.0000000000
## 182  0.08949387 0.969298246 0.0020893443 1.0000000000
## 1360 0.08817664 0.970175439 0.0020269363 1.0000000000
## 1354 0.08684123 0.971052632 0.0019646930 1.0000000000
## 1079 0.08548678 0.971929825 0.0019026141 1.0000000000
## 301  0.08411238 0.972807018 0.0018406991 1.0000000000
## 441  0.08271702 0.973684211 0.0017789474 1.0000000000
## 1101 0.08129962 0.974561404 0.0017173585 1.0000000000
## 729  0.07985901 0.975438596 0.0016559321 1.0000000000
## 1325 0.07839390 0.976315789 0.0015946676 1.0000000000
## 576  0.07690289 0.977192982 0.0015335645 1.0000000000
## 766  0.07538443 0.978070175 0.0014726223 1.0000000000
## 102  0.07383682 0.978947368 0.0014118406 1.0000000000
## 57   0.07225821 0.979824561 0.0013512188 1.0000000000
## 748  0.07064648 0.980701754 0.0012907566 1.0000000000
## 865  0.06899934 0.981578947 0.0012304534 1.0000000000
## 13   0.06731416 0.982456140 0.0011703088 1.0000000000
## 1081 0.06558801 0.983333333 0.0011103222 1.0000000000
## 306  0.06381757 0.984210526 0.0010504933 1.0000000000
## 1431 0.06199903 0.985087719 0.0009908215 1.0000000000
## 916  0.06012802 0.985964912 0.0009313064 1.0000000000
## 200  0.05819949 0.986842105 0.0008719475 1.0000000000
## 1309 0.05620750 0.987719298 0.0008127444 1.0000000000
## 35   0.05414505 0.988596491 0.0007536966 1.0000000000
## 1418 0.05200374 0.989473684 0.0006948036 1.0000000000
## 1019 0.04977340 0.990350877 0.0006360650 1.0000000000
## 204  0.04744146 0.991228070 0.0005774803 1.0000000000
## 1059 0.04499213 0.992105263 0.0005190491 1.0000000000
## 857  0.04240505 0.992982456 0.0004607709 1.0000000000
## 1285 0.03965326 0.993859649 0.0004026453 1.0000000000
## 1168 0.03669974 0.994736842 0.0003446717 1.0000000000
## 751  0.03349114 0.995614035 0.0002868499 1.0000000000
## 774  0.02994557 0.996491228 0.0002291792 1.0000000000
## 757  0.02592513 0.997368421 0.0001716594 1.0000000000
## 746  0.02116085 0.998245614 0.0001142898 1.0000000000
## 353  0.01495809 0.999122807 0.0000570702 1.0000000000
## 362         NaN 1.000000000 0.0000000000 1.0000000000
## 
## 
## [[1]]$optres
## [[1]]$optres$Group1
##                Score        CI
## SENS           0.831 0.79-0.86
## SPEC           0.626  0.6-0.65
## MCC            0.398      <NA>
## Informedness   0.457      <NA>
## PREC           0.432  0.4-0.47
## NPV            0.915 0.89-0.93
## FPR            0.374      <NA>
## F1             0.568      <NA>
## TP           324.000      <NA>
## FP           426.000      <NA>
## TN           714.000      <NA>
## FN            66.000      <NA>
## AUC-ROC        0.820 0.79-0.85
## AUC-PR         0.600      <NA>
## AUC-PRG        0.170      <NA>
## 
## 
## [[1]]$stdres
## [[1]]$stdres$Group1
##                Score        CI
## SENS           0.713 0.67-0.76
## SPEC           0.733 0.71-0.76
## MCC            0.401      <NA>
## Informedness   0.446      <NA>
## PREC           0.478 0.44-0.52
## NPV            0.882  0.86-0.9
## FPR            0.267      <NA>
## F1             0.572      <NA>
## TP           278.000      <NA>
## FP           304.000      <NA>
## TN           836.000      <NA>
## FN           112.000      <NA>
## AUC-ROC        0.820 0.79-0.85
## AUC-PR         0.600      <NA>
## AUC-PRG        0.170      <NA>
## 
## 
## 
## [[2]]
## [[2]]$roc

## 
## [[2]]$proc

## 
## [[2]]$prg

## 
## [[2]]$cc

## 
## [[2]]$probs
## [[2]]$probs$Group1
##           one      zero  obs  Group TP TN FP FN      SENS       SPEC
## 32 0.89361752 0.1063825  one Group1  1 28  0  8 0.1111111 1.00000000
## 36 0.86965762 0.1303424  one Group1  2 28  0  7 0.2222222 1.00000000
## 34 0.86715816 0.1328418  one Group1  3 28  0  6 0.3333333 1.00000000
## 35 0.86298047 0.1370195  one Group1  4 28  0  5 0.4444444 1.00000000
## 10 0.79698319 0.2030168 zero Group1  4 27  1  5 0.4444444 0.96428571
## 31 0.77231127 0.2276887  one Group1  5 27  1  4 0.5555556 0.96428571
## 29 0.73970474 0.2602953  one Group1  6 27  1  3 0.6666667 0.96428571
## 37 0.73123459 0.2687654  one Group1  7 27  1  2 0.7777778 0.96428571
## 23 0.72669300 0.2733070 zero Group1  7 26  2  2 0.7777778 0.92857143
## 24 0.59667268 0.4033273 zero Group1  7 25  3  2 0.7777778 0.89285714
## 20 0.56745528 0.4325447 zero Group1  7 24  4  2 0.7777778 0.85714286
## 6  0.56503869 0.4349613 zero Group1  7 23  5  2 0.7777778 0.82142857
## 21 0.53731905 0.4626810 zero Group1  7 22  6  2 0.7777778 0.78571429
## 30 0.45289492 0.5471051  one Group1  8 22  6  1 0.8888889 0.78571429
## 8  0.45073472 0.5492653 zero Group1  8 21  7  1 0.8888889 0.75000000
## 28 0.42946885 0.5705312 zero Group1  8 20  8  1 0.8888889 0.71428571
## 27 0.40460592 0.5953941 zero Group1  8 19  9  1 0.8888889 0.67857143
## 5  0.40067511 0.5993249 zero Group1  8 18 10  1 0.8888889 0.64285714
## 22 0.39337292 0.6066271 zero Group1  8 17 11  1 0.8888889 0.60714286
## 7  0.39131899 0.6086810 zero Group1  8 16 12  1 0.8888889 0.57142857
## 33 0.37972585 0.6202741  one Group1  9 16 12  0 1.0000000 0.57142857
## 19 0.35251086 0.6474891 zero Group1  9 15 13  0 1.0000000 0.53571429
## 1  0.32591040 0.6740896 zero Group1  9 14 14  0 1.0000000 0.50000000
## 13 0.29255975 0.7074403 zero Group1  9 13 15  0 1.0000000 0.46428571
## 4  0.21798716 0.7820128 zero Group1  9 12 16  0 1.0000000 0.42857143
## 3  0.21157116 0.7884288 zero Group1  9 11 17  0 1.0000000 0.39285714
## 11 0.19191421 0.8080858 zero Group1  9 10 18  0 1.0000000 0.35714286
## 9  0.18609157 0.8139084 zero Group1  9  9 19  0 1.0000000 0.32142857
## 17 0.15824419 0.8417558 zero Group1  9  8 20  0 1.0000000 0.28571429
## 25 0.13394739 0.8660526 zero Group1  9  7 21  0 1.0000000 0.25000000
## 14 0.12670854 0.8732915 zero Group1  9  6 22  0 1.0000000 0.21428571
## 26 0.07869205 0.9213080 zero Group1  9  5 23  0 1.0000000 0.17857143
## 12 0.07538408 0.9246159 zero Group1  9  4 24  0 1.0000000 0.14285714
## 18 0.07417301 0.9258270 zero Group1  9  3 25  0 1.0000000 0.10714286
## 16 0.05029323 0.9497068 zero Group1  9  2 26  0 1.0000000 0.07142857
## 15 0.03096223 0.9690378 zero Group1  9  1 27  0 1.0000000 0.03571429
## 2  0.02383893 0.9761611 zero Group1  9  0 28  0 1.0000000 0.00000000
##    Informedness      PREC       NPV      MARK        F1        MCC        FPR
## 32   0.11111111 1.0000000 0.7777778 0.7777778 0.2000000 0.29397237 0.00000000
## 36   0.22222222 1.0000000 0.8000000 0.8000000 0.3636364 0.42163702 0.00000000
## 34   0.33333333 1.0000000 0.8235294 0.8235294 0.5000000 0.52393683 0.00000000
## 35   0.44444444 1.0000000 0.8484848 0.8484848 0.6153846 0.61408825 0.00000000
## 10   0.40873016 0.8000000 0.8437500 0.6437500 0.5714286 0.51295228 0.03571429
## 31   0.51984127 0.8333333 0.8709677 0.7043011 0.6666667 0.60508245 0.03571429
## 29   0.63095238 0.8571429 0.9000000 0.7571429 0.7500000 0.69117370 0.03571429
## 37   0.74206349 0.8750000 0.9310345 0.8060345 0.8235294 0.77338785 0.03571429
## 23   0.70634921 0.7777778 0.9285714 0.7063492 0.7777778 0.70634921 0.07142857
## 24   0.67063492 0.7000000 0.9259259 0.6259259 0.7368421 0.64789489 0.10714286
## 20   0.63492063 0.6363636 0.9230769 0.5594406 0.7000000 0.59598688 0.14285714
## 6    0.59920635 0.5833333 0.9200000 0.5033333 0.6666667 0.54918169 0.17857143
## 21   0.56349206 0.5384615 0.9166667 0.4551282 0.6363636 0.50641992 0.21428571
## 30   0.67460317 0.5714286 0.9565217 0.5279503 0.6956522 0.59678887 0.21428571
## 8    0.63888889 0.5333333 0.9545455 0.4878788 0.6666667 0.55830130 0.25000000
## 28   0.60317460 0.5000000 0.9523810 0.4523810 0.6400000 0.52236453 0.28571429
## 27   0.56746032 0.4705882 0.9500000 0.4205882 0.6153846 0.48853570 0.32142857
## 5    0.53174603 0.4444444 0.9473684 0.3918129 0.5925926 0.45644817 0.35714286
## 22   0.49603175 0.4210526 0.9444444 0.3654971 0.5714286 0.42579121 0.39285714
## 7    0.46031746 0.4000000 0.9411765 0.3411765 0.5517241 0.39629470 0.42857143
## 33   0.57142857 0.4285714 1.0000000 0.4285714 0.6000000 0.49487166 0.42857143
## 19   0.53571429 0.4090909 1.0000000 0.4090909 0.5806452 0.46814084 0.46428571
## 1    0.50000000 0.3913043 1.0000000 0.3913043 0.5625000 0.44232587 0.50000000
## 13   0.46428571 0.3750000 1.0000000 0.3750000 0.5454545 0.41726148 0.53571429
## 4    0.42857143 0.3600000 1.0000000 0.3600000 0.5294118 0.39279220 0.57142857
## 3    0.39285714 0.3461538 1.0000000 0.3461538 0.5142857 0.36876688 0.60714286
## 11   0.35714286 0.3333333 1.0000000 0.3333333 0.5000000 0.34503278 0.64285714
## 9    0.32142857 0.3214286 1.0000000 0.3214286 0.4864865 0.32142857 0.67857143
## 17   0.28571429 0.3103448 1.0000000 0.3103448 0.4736842 0.29777500 0.71428571
## 25   0.25000000 0.3000000 1.0000000 0.3000000 0.4615385 0.27386128 0.75000000
## 14   0.21428571 0.2903226 1.0000000 0.2903226 0.4500000 0.24942330 0.78571429
## 26   0.17857143 0.2812500 1.0000000 0.2812500 0.4390244 0.22410536 0.82142857
## 12   0.14285714 0.2727273 1.0000000 0.2727273 0.4285714 0.19738551 0.85714286
## 18   0.10714286 0.2647059 1.0000000 0.2647059 0.4186047 0.16840827 0.89285714
## 16   0.07142857 0.2571429 1.0000000 0.2571429 0.4090909 0.13552619 0.92857143
## 15   0.03571429 0.2500000 1.0000000 0.2500000 0.4000000 0.09449112 0.96428571
## 2    0.00000000 0.2432432 0.0000000       NaN 0.3913043        NaN 1.00000000
##             PG         RG
## 32 1.000000000 0.00000000
## 36 1.000000000 0.00000000
## 34 1.000000000 0.03968254
## 35 1.000000000 0.11816578
## 10 0.588571429 0.11816578
## 31 0.649801587 0.22927690
## 29 0.695335277 0.37301587
## 37 0.730468750 0.54938272
## 23 0.549382716 0.54938272
## 24 0.422500000 0.54938272
## 20 0.330578512 0.54938272
## 6  0.262152778 0.54938272
## 21 0.210059172 0.54938272
## 30 0.247813411 0.75837743
## 8  0.204444444 0.75837743
## 28 0.169642857 0.75837743
## 27 0.141374197 0.75837743
## 5  0.118165785 0.75837743
## 22 0.098931539 0.75837743
## 7  0.082857143 0.75837743
## 33 0.104956268 1.00000000
## 19 0.089654664 1.00000000
## 1  0.076559546 1.00000000
## 13 0.065290179 1.00000000
## 4  0.055542857 1.00000000
## 3  0.047073119 1.00000000
## 11 0.039682540 1.00000000
## 9  0.033208819 1.00000000
## 17 0.027518261 1.00000000
## 25 0.022500000 1.00000000
## 14 0.018061543 1.00000000
## 26 0.014125279 1.00000000
## 12 0.010625738 1.00000000
## 18 0.007507415 1.00000000
## 16 0.004723032 1.00000000
## 15 0.002232143 1.00000000
## 2  0.000000000 1.00000000
## 
## 
## [[2]]$optres
## [[2]]$optres$Group1
##               Score        CI
## SENS          0.778 0.45-0.94
## SPEC          0.964 0.82-0.99
## MCC           0.773      <NA>
## Informedness  0.742      <NA>
## PREC          0.875 0.53-0.98
## NPV           0.931 0.78-0.98
## FPR           0.036      <NA>
## F1            0.824      <NA>
## TP            7.000      <NA>
## FP            1.000      <NA>
## TN           27.000      <NA>
## FN            2.000      <NA>
## AUC-ROC       0.920 0.79-1.05
## AUC-PR        0.720      <NA>
## AUC-PRG       0.500      <NA>
## 
## 
## [[2]]$stdres
## [[2]]$stdres$Group1
##               Score        CI
## SENS          0.778 0.45-0.94
## SPEC          0.786   0.6-0.9
## MCC           0.506      <NA>
## Informedness  0.563      <NA>
## PREC          0.538 0.29-0.77
## NPV           0.917 0.74-0.98
## FPR           0.214      <NA>
## F1            0.636      <NA>
## TP            7.000      <NA>
## FP            6.000      <NA>
## TN           22.000      <NA>
## FN            2.000      <NA>
## AUC-ROC       0.920 0.79-1.05
## AUC-PR        0.720      <NA>
## AUC-PRG       0.500      <NA>

rf

viz_perf_f(model_m=rf_m,
           testdat=testSet1,
           bin_num=10)

## [[1]]
## [[1]]$roc

## 
## [[1]]$proc

## 
## [[1]]$prg

## 
## [[1]]$cc

## 
## [[1]]$probs
## [[1]]$probs$Group1
##        one  zero  obs  Group  TP   TN   FP  FN        SENS        SPEC
## 358  0.976 0.024  one Group1   1 1140    0 389 0.002564103 1.000000000
## 660  0.972 0.028  one Group1   2 1140    0 388 0.005128205 1.000000000
## 343  0.970 0.030  one Group1   3 1140    0 387 0.007692308 1.000000000
## 585  0.964 0.036  one Group1   4 1140    0 386 0.010256410 1.000000000
## 845  0.962 0.038  one Group1   5 1140    0 385 0.012820513 1.000000000
## 980  0.952 0.048  one Group1   6 1140    0 384 0.015384615 1.000000000
## 1404 0.948 0.052  one Group1   7 1140    0 383 0.017948718 1.000000000
## 1054 0.944 0.056  one Group1  10 1140    0 380 0.025641026 1.000000000
## 1071 0.944 0.056  one Group1  10 1140    0 380 0.025641026 1.000000000
## 1345 0.944 0.056  one Group1  10 1140    0 380 0.025641026 1.000000000
## 340  0.936 0.064  one Group1  11 1140    0 379 0.028205128 1.000000000
## 118  0.932 0.068  one Group1  13 1140    0 377 0.033333333 1.000000000
## 1386 0.932 0.068  one Group1  13 1140    0 377 0.033333333 1.000000000
## 398  0.928 0.072 zero Group1  13 1139    1 377 0.033333333 0.999122807
## 93   0.924 0.076  one Group1  14 1139    1 376 0.035897436 0.999122807
## 919  0.922 0.078  one Group1  15 1139    1 375 0.038461538 0.999122807
## 441  0.920 0.080  one Group1  16 1139    1 374 0.041025641 0.999122807
## 667  0.916 0.084 zero Group1  16 1138    2 374 0.041025641 0.998245614
## 852  0.914 0.086  one Group1  18 1138    2 372 0.046153846 0.998245614
## 1337 0.914 0.086  one Group1  18 1138    2 372 0.046153846 0.998245614
## 783  0.908 0.092 zero Group1  18 1137    3 372 0.046153846 0.997368421
## 1481 0.906 0.094  one Group1  19 1137    3 371 0.048717949 0.997368421
## 849  0.904 0.096  one Group1  20 1137    3 370 0.051282051 0.997368421
## 614  0.902 0.098  one Group1  21 1137    3 369 0.053846154 0.997368421
## 1483 0.900 0.100  one Group1  22 1137    3 368 0.056410256 0.997368421
## 196  0.896 0.104  one Group1  24 1137    3 366 0.061538462 0.997368421
## 897  0.896 0.104  one Group1  24 1137    3 366 0.061538462 0.997368421
## 135  0.894 0.106  one Group1  28 1136    4 362 0.071794872 0.996491228
## 168  0.894 0.106  one Group1  28 1136    4 362 0.071794872 0.996491228
## 1001 0.894 0.106 zero Group1  28 1136    4 362 0.071794872 0.996491228
## 1268 0.894 0.106  one Group1  28 1136    4 362 0.071794872 0.996491228
## 1409 0.894 0.106  one Group1  28 1136    4 362 0.071794872 0.996491228
## 1122 0.890 0.110  one Group1  29 1136    4 361 0.074358974 0.996491228
## 339  0.888 0.112  one Group1  30 1136    4 360 0.076923077 0.996491228
## 439  0.886 0.114  one Group1  32 1136    4 358 0.082051282 0.996491228
## 1121 0.886 0.114  one Group1  32 1136    4 358 0.082051282 0.996491228
## 1387 0.882 0.118  one Group1  33 1136    4 357 0.084615385 0.996491228
## 823  0.880 0.120  one Group1  35 1136    4 355 0.089743590 0.996491228
## 925  0.880 0.120  one Group1  35 1136    4 355 0.089743590 0.996491228
## 681  0.878 0.122  one Group1  38 1136    4 352 0.097435897 0.996491228
## 1066 0.878 0.122  one Group1  38 1136    4 352 0.097435897 0.996491228
## 1335 0.878 0.122  one Group1  38 1136    4 352 0.097435897 0.996491228
## 436  0.876 0.124  one Group1  40 1136    4 350 0.102564103 0.996491228
## 1488 0.876 0.124  one Group1  40 1136    4 350 0.102564103 0.996491228
## 1236 0.872 0.128  one Group1  41 1136    4 349 0.105128205 0.996491228
## 233  0.870 0.130  one Group1  45 1135    5 345 0.115384615 0.995614035
## 684  0.870 0.130  one Group1  45 1135    5 345 0.115384615 0.995614035
## 887  0.870 0.130 zero Group1  45 1135    5 345 0.115384615 0.995614035
## 922  0.870 0.130  one Group1  45 1135    5 345 0.115384615 0.995614035
## 1334 0.870 0.130  one Group1  45 1135    5 345 0.115384615 0.995614035
## 761  0.868 0.132  one Group1  46 1135    5 344 0.117948718 0.995614035
## 100  0.866 0.134  one Group1  48 1133    7 342 0.123076923 0.993859649
## 111  0.866 0.134 zero Group1  48 1133    7 342 0.123076923 0.993859649
## 583  0.866 0.134  one Group1  48 1133    7 342 0.123076923 0.993859649
## 785  0.866 0.134 zero Group1  48 1133    7 342 0.123076923 0.993859649
## 582  0.864 0.136  one Group1  50 1133    7 340 0.128205128 0.993859649
## 1482 0.864 0.136  one Group1  50 1133    7 340 0.128205128 0.993859649
## 773  0.862 0.138 zero Group1  50 1132    8 340 0.128205128 0.992982456
## 364  0.860 0.140  one Group1  51 1132    8 339 0.130769231 0.992982456
## 1314 0.858 0.142  one Group1  53 1132    8 337 0.135897436 0.992982456
## 1485 0.858 0.142  one Group1  53 1132    8 337 0.135897436 0.992982456
## 679  0.852 0.148  one Group1  54 1132    8 336 0.138461538 0.992982456
## 134  0.848 0.152  one Group1  56 1132    8 334 0.143589744 0.992982456
## 924  0.848 0.152  one Group1  56 1132    8 334 0.143589744 0.992982456
## 272  0.846 0.154 zero Group1  56 1131    9 334 0.143589744 0.992105263
## 98   0.844 0.156  one Group1  57 1130   10 333 0.146153846 0.991228070
## 558  0.844 0.156 zero Group1  57 1130   10 333 0.146153846 0.991228070
## 119  0.840 0.160  one Group1  59 1130   10 331 0.151282051 0.991228070
## 1490 0.840 0.160  one Group1  59 1130   10 331 0.151282051 0.991228070
## 902  0.838 0.162  one Group1  60 1130   10 330 0.153846154 0.991228070
## 898  0.836 0.164  one Group1  62 1130   10 328 0.158974359 0.991228070
## 1311 0.836 0.164  one Group1  62 1130   10 328 0.158974359 0.991228070
## 124  0.832 0.168  one Group1  64 1130   10 326 0.164102564 0.991228070
## 827  0.832 0.168  one Group1  64 1130   10 326 0.164102564 0.991228070
## 543  0.830 0.170  one Group1  66 1130   10 324 0.169230769 0.991228070
## 1406 0.830 0.170  one Group1  66 1130   10 324 0.169230769 0.991228070
## 1308 0.828 0.172  one Group1  67 1130   10 323 0.171794872 0.991228070
## 61   0.826 0.174 zero Group1  69 1128   12 321 0.176923077 0.989473684
## 1053 0.826 0.174  one Group1  69 1128   12 321 0.176923077 0.989473684
## 1125 0.826 0.174  one Group1  69 1128   12 321 0.176923077 0.989473684
## 1388 0.826 0.174 zero Group1  69 1128   12 321 0.176923077 0.989473684
## 680  0.824 0.176  one Group1  72 1128   12 318 0.184615385 0.989473684
## 682  0.824 0.176  one Group1  72 1128   12 318 0.184615385 0.989473684
## 1168 0.824 0.176  one Group1  72 1128   12 318 0.184615385 0.989473684
## 834  0.822 0.178  one Group1  74 1127   13 316 0.189743590 0.988596491
## 1094 0.822 0.178  one Group1  74 1127   13 316 0.189743590 0.988596491
## 1223 0.822 0.178 zero Group1  74 1127   13 316 0.189743590 0.988596491
## 830  0.820 0.180 zero Group1  74 1126   14 316 0.189743590 0.987719298
## 216  0.818 0.182 zero Group1  74 1124   16 316 0.189743590 0.985964912
## 1362 0.818 0.182 zero Group1  74 1124   16 316 0.189743590 0.985964912
## 749  0.816 0.184  one Group1  75 1123   17 315 0.192307692 0.985087719
## 1510 0.816 0.184 zero Group1  75 1123   17 315 0.192307692 0.985087719
## 122  0.814 0.186  one Group1  80 1123   17 310 0.205128205 0.985087719
## 411  0.814 0.186  one Group1  80 1123   17 310 0.205128205 0.985087719
## 750  0.814 0.186  one Group1  80 1123   17 310 0.205128205 0.985087719
## 1200 0.814 0.186  one Group1  80 1123   17 310 0.205128205 0.985087719
## 1346 0.814 0.186  one Group1  80 1123   17 310 0.205128205 0.985087719
## 414  0.812 0.188  one Group1  82 1122   18 308 0.210256410 0.984210526
## 929  0.812 0.188 zero Group1  82 1122   18 308 0.210256410 0.984210526
## 1333 0.812 0.188  one Group1  82 1122   18 308 0.210256410 0.984210526
## 136  0.810 0.190  one Group1  83 1121   19 307 0.212820513 0.983333333
## 819  0.810 0.190 zero Group1  83 1121   19 307 0.212820513 0.983333333
## 489  0.808 0.192 zero Group1  84 1120   20 306 0.215384615 0.982456140
## 918  0.808 0.192  one Group1  84 1120   20 306 0.215384615 0.982456140
## 269  0.806 0.194  one Group1  85 1119   21 305 0.217948718 0.981578947
## 465  0.806 0.194 zero Group1  85 1119   21 305 0.217948718 0.981578947
## 194  0.800 0.200  one Group1  87 1119   21 303 0.223076923 0.981578947
## 828  0.800 0.200  one Group1  87 1119   21 303 0.223076923 0.981578947
## 653  0.798 0.202  one Group1  88 1119   21 302 0.225641026 0.981578947
## 117  0.796 0.204  one Group1  89 1119   21 301 0.228205128 0.981578947
## 360  0.794 0.206  one Group1  92 1119   21 298 0.235897436 0.981578947
## 366  0.794 0.206  one Group1  92 1119   21 298 0.235897436 0.981578947
## 437  0.794 0.206  one Group1  92 1119   21 298 0.235897436 0.981578947
## 994  0.792 0.208  one Group1  93 1119   21 297 0.238461538 0.981578947
## 840  0.790 0.210 zero Group1  93 1118   22 297 0.238461538 0.980701754
## 265  0.788 0.212  one Group1  94 1118   22 296 0.241025641 0.980701754
## 113  0.786 0.214 zero Group1  94 1116   24 296 0.241025641 0.978947368
## 572  0.786 0.214 zero Group1  94 1116   24 296 0.241025641 0.978947368
## 321  0.782 0.218  one Group1  95 1115   25 295 0.243589744 0.978070175
## 775  0.782 0.218 zero Group1  95 1115   25 295 0.243589744 0.978070175
## 337  0.778 0.222  one Group1  96 1114   26 294 0.246153846 0.977192982
## 1293 0.778 0.222 zero Group1  96 1114   26 294 0.246153846 0.977192982
## 232  0.776 0.224  one Group1  97 1114   26 293 0.248717949 0.977192982
## 999  0.774 0.226  one Group1  98 1114   26 292 0.251282051 0.977192982
## 1096 0.772 0.228  one Group1  99 1114   26 291 0.253846154 0.977192982
## 1341 0.770 0.230  one Group1 100 1114   26 290 0.256410256 0.977192982
## 464  0.768 0.232 zero Group1 101 1112   28 289 0.258974359 0.975438596
## 1241 0.768 0.232  one Group1 101 1112   28 289 0.258974359 0.975438596
## 1508 0.768 0.232 zero Group1 101 1112   28 289 0.258974359 0.975438596
## 1445 0.766 0.234 zero Group1 101 1111   29 289 0.258974359 0.974561404
## 591  0.762 0.238 zero Group1 101 1110   30 289 0.258974359 0.973684211
## 755  0.760 0.240  one Group1 102 1110   30 288 0.261538462 0.973684211
## 541  0.758 0.242  one Group1 105 1110   30 285 0.269230769 0.973684211
## 709  0.758 0.242  one Group1 105 1110   30 285 0.269230769 0.973684211
## 806  0.758 0.242  one Group1 105 1110   30 285 0.269230769 0.973684211
## 989  0.756 0.244 zero Group1 105 1109   31 285 0.269230769 0.972807018
## 199  0.754 0.246 zero Group1 108 1108   32 282 0.276923077 0.971929825
## 504  0.754 0.246  one Group1 108 1108   32 282 0.276923077 0.971929825
## 581  0.754 0.246  one Group1 108 1108   32 282 0.276923077 0.971929825
## 615  0.754 0.246  one Group1 108 1108   32 282 0.276923077 0.971929825
## 204  0.752 0.248 zero Group1 108 1107   33 282 0.276923077 0.971052632
## 612  0.750 0.250  one Group1 111 1106   34 279 0.284615385 0.970175439
## 1326 0.750 0.250 zero Group1 111 1106   34 279 0.284615385 0.970175439
## 1405 0.750 0.250  one Group1 111 1106   34 279 0.284615385 0.970175439
## 1413 0.750 0.250  one Group1 111 1106   34 279 0.284615385 0.970175439
## 953  0.748 0.252 zero Group1 111 1104   36 279 0.284615385 0.968421053
## 1157 0.748 0.252 zero Group1 111 1104   36 279 0.284615385 0.968421053
## 230  0.746 0.254 zero Group1 112 1102   38 278 0.287179487 0.966666667
## 362  0.746 0.254  one Group1 112 1102   38 278 0.287179487 0.966666667
## 805  0.746 0.254 zero Group1 112 1102   38 278 0.287179487 0.966666667
## 848  0.744 0.256  one Group1 114 1102   38 276 0.292307692 0.966666667
## 1313 0.744 0.256  one Group1 114 1102   38 276 0.292307692 0.966666667
## 178  0.742 0.258 zero Group1 114 1101   39 276 0.292307692 0.965789474
## 1095 0.736 0.264  one Group1 115 1101   39 275 0.294871795 0.965789474
## 363  0.734 0.266  one Group1 116 1101   39 274 0.297435897 0.965789474
## 89   0.732 0.268  one Group1 117 1100   40 273 0.300000000 0.964912281
## 274  0.732 0.268 zero Group1 117 1100   40 273 0.300000000 0.964912281
## 756  0.730 0.270  one Group1 119 1100   40 271 0.305128205 0.964912281
## 1139 0.730 0.270  one Group1 119 1100   40 271 0.305128205 0.964912281
## 554  0.722 0.278 zero Group1 120 1099   41 270 0.307692308 0.964035088
## 753  0.722 0.278  one Group1 120 1099   41 270 0.307692308 0.964035088
## 977  0.720 0.280  one Group1 122 1098   42 268 0.312820513 0.963157895
## 1320 0.720 0.280 zero Group1 122 1098   42 268 0.312820513 0.963157895
## 1342 0.720 0.280  one Group1 122 1098   42 268 0.312820513 0.963157895
## 635  0.718 0.282 zero Group1 122 1097   43 268 0.312820513 0.962280702
## 468  0.716 0.284  one Group1 124 1095   45 266 0.317948718 0.960526316
## 685  0.716 0.284 zero Group1 124 1095   45 266 0.317948718 0.960526316
## 1023 0.716 0.284 zero Group1 124 1095   45 266 0.317948718 0.960526316
## 1049 0.716 0.284  one Group1 124 1095   45 266 0.317948718 0.960526316
## 391  0.714 0.286 zero Group1 126 1093   47 264 0.323076923 0.958771930
## 420  0.714 0.286 zero Group1 126 1093   47 264 0.323076923 0.958771930
## 751  0.714 0.286  one Group1 126 1093   47 264 0.323076923 0.958771930
## 1052 0.714 0.286  one Group1 126 1093   47 264 0.323076923 0.958771930
## 1126 0.710 0.290  one Group1 127 1093   47 263 0.325641026 0.958771930
## 1124 0.708 0.292  one Group1 128 1093   47 262 0.328205128 0.958771930
## 826  0.706 0.294  one Group1 130 1093   47 260 0.333333333 0.958771930
## 1343 0.706 0.294  one Group1 130 1093   47 260 0.333333333 0.958771930
## 835  0.704 0.296  one Group1 132 1093   47 258 0.338461538 0.958771930
## 1136 0.704 0.296  one Group1 132 1093   47 258 0.338461538 0.958771930
## 281  0.702 0.298 zero Group1 132 1091   49 258 0.338461538 0.957017544
## 1506 0.702 0.298 zero Group1 132 1091   49 258 0.338461538 0.957017544
## 686  0.700 0.300  one Group1 133 1091   49 257 0.341025641 0.957017544
## 263  0.698 0.302  one Group1 135 1088   52 255 0.346153846 0.954385965
## 549  0.698 0.302 zero Group1 135 1088   52 255 0.346153846 0.954385965
## 566  0.698 0.302 zero Group1 135 1088   52 255 0.346153846 0.954385965
## 573  0.698 0.302 zero Group1 135 1088   52 255 0.346153846 0.954385965
## 951  0.698 0.302  one Group1 135 1088   52 255 0.346153846 0.954385965
## 22   0.696 0.304 zero Group1 135 1086   54 255 0.346153846 0.952631579
## 327  0.696 0.304 zero Group1 135 1086   54 255 0.346153846 0.952631579
## 205  0.694 0.306 zero Group1 138 1085   55 252 0.353846154 0.951754386
## 1135 0.694 0.306  one Group1 138 1085   55 252 0.353846154 0.951754386
## 1270 0.694 0.306  one Group1 138 1085   55 252 0.353846154 0.951754386
## 1416 0.694 0.306  one Group1 138 1085   55 252 0.353846154 0.951754386
## 613  0.688 0.312  one Group1 140 1084   56 250 0.358974359 0.950877193
## 979  0.688 0.312  one Group1 140 1084   56 250 0.358974359 0.950877193
## 1468 0.688 0.312 zero Group1 140 1084   56 250 0.358974359 0.950877193
## 539  0.686 0.314 zero Group1 141 1083   57 249 0.361538462 0.950000000
## 1412 0.686 0.314  one Group1 141 1083   57 249 0.361538462 0.950000000
## 8    0.684 0.316 zero Group1 142 1082   58 248 0.364102564 0.949122807
## 981  0.684 0.316  one Group1 142 1082   58 248 0.364102564 0.949122807
## 54   0.682 0.318 zero Group1 142 1081   59 248 0.364102564 0.948245614
## 338  0.680 0.320  one Group1 145 1081   59 245 0.371794872 0.948245614
## 368  0.680 0.320  one Group1 145 1081   59 245 0.371794872 0.948245614
## 688  0.680 0.320  one Group1 145 1081   59 245 0.371794872 0.948245614
## 713  0.672 0.328 zero Group1 145 1078   62 245 0.371794872 0.945614035
## 991  0.672 0.328 zero Group1 145 1078   62 245 0.371794872 0.945614035
## 1210 0.672 0.328 zero Group1 145 1078   62 245 0.371794872 0.945614035
## 511  0.670 0.330  one Group1 146 1077   63 244 0.374358974 0.944736842
## 931  0.670 0.330 zero Group1 146 1077   63 244 0.374358974 0.944736842
## 256  0.668 0.332 zero Group1 147 1075   65 243 0.376923077 0.942982456
## 259  0.668 0.332  one Group1 147 1075   65 243 0.376923077 0.942982456
## 772  0.668 0.332 zero Group1 147 1075   65 243 0.376923077 0.942982456
## 181  0.666 0.334 zero Group1 149 1074   66 241 0.382051282 0.942105263
## 649  0.666 0.334  one Group1 149 1074   66 241 0.382051282 0.942105263
## 754  0.666 0.334  one Group1 149 1074   66 241 0.382051282 0.942105263
## 687  0.664 0.336  one Group1 151 1073   67 239 0.387179487 0.941228070
## 843  0.664 0.336  one Group1 151 1073   67 239 0.387179487 0.941228070
## 1523 0.664 0.336 zero Group1 151 1073   67 239 0.387179487 0.941228070
## 91   0.660 0.340  one Group1 152 1072   68 238 0.389743590 0.940350877
## 636  0.660 0.340 zero Group1 152 1072   68 238 0.389743590 0.940350877
## 982  0.658 0.342 zero Group1 153 1071   69 237 0.392307692 0.939473684
## 1050 0.658 0.342  one Group1 153 1071   69 237 0.392307692 0.939473684
## 167  0.656 0.344  one Group1 154 1071   69 236 0.394871795 0.939473684
## 1152 0.654 0.346 zero Group1 154 1069   71 236 0.394871795 0.937719298
## 1180 0.654 0.346 zero Group1 154 1069   71 236 0.394871795 0.937719298
## 324  0.652 0.348 zero Group1 155 1067   73 235 0.397435897 0.935964912
## 392  0.652 0.348 zero Group1 155 1067   73 235 0.397435897 0.935964912
## 657  0.652 0.348  one Group1 155 1067   73 235 0.397435897 0.935964912
## 170  0.648 0.352  one Group1 157 1066   74 233 0.402564103 0.935087719
## 579  0.648 0.352  one Group1 157 1066   74 233 0.402564103 0.935087719
## 1370 0.648 0.352 zero Group1 157 1066   74 233 0.402564103 0.935087719
## 121  0.646 0.354  one Group1 160 1065   75 230 0.410256410 0.934210526
## 804  0.646 0.354 zero Group1 160 1065   75 230 0.410256410 0.934210526
## 915  0.646 0.354  one Group1 160 1065   75 230 0.410256410 0.934210526
## 1415 0.646 0.354  one Group1 160 1065   75 230 0.410256410 0.934210526
## 29   0.644 0.356 zero Group1 161 1064   76 229 0.412820513 0.933333333
## 1240 0.644 0.356  one Group1 161 1064   76 229 0.412820513 0.933333333
## 415  0.642 0.358  one Group1 163 1064   76 227 0.417948718 0.933333333
## 586  0.642 0.358  one Group1 163 1064   76 227 0.417948718 0.933333333
## 896  0.640 0.360  one Group1 166 1064   76 224 0.425641026 0.933333333
## 1068 0.640 0.360  one Group1 166 1064   76 224 0.425641026 0.933333333
## 1381 0.640 0.360  one Group1 166 1064   76 224 0.425641026 0.933333333
## 512  0.638 0.362  one Group1 167 1063   77 223 0.428205128 0.932456140
## 1004 0.638 0.362 zero Group1 167 1063   77 223 0.428205128 0.932456140
## 603  0.636 0.364  one Group1 168 1063   77 222 0.430769231 0.932456140
## 92   0.634 0.366  one Group1 171 1062   78 219 0.438461538 0.931578947
## 757  0.634 0.366  one Group1 171 1062   78 219 0.438461538 0.931578947
## 881  0.634 0.366 zero Group1 171 1062   78 219 0.438461538 0.931578947
## 1403 0.634 0.366  one Group1 171 1062   78 219 0.438461538 0.931578947
## 423  0.630 0.370 zero Group1 172 1061   79 218 0.441025641 0.930701754
## 1140 0.630 0.370  one Group1 172 1061   79 218 0.441025641 0.930701754
## 537  0.628 0.372 zero Group1 172 1060   80 218 0.441025641 0.929824561
## 197  0.626 0.374  one Group1 177 1059   81 213 0.453846154 0.928947368
## 587  0.626 0.374  one Group1 177 1059   81 213 0.453846154 0.928947368
## 850  0.626 0.374  one Group1 177 1059   81 213 0.453846154 0.928947368
## 1161 0.626 0.374  one Group1 177 1059   81 213 0.453846154 0.928947368
## 1393 0.626 0.374 zero Group1 177 1059   81 213 0.453846154 0.928947368
## 1407 0.626 0.374  one Group1 177 1059   81 213 0.453846154 0.928947368
## 260  0.622 0.378  one Group1 179 1058   82 211 0.458974359 0.928070175
## 782  0.622 0.378 zero Group1 179 1058   82 211 0.458974359 0.928070175
## 921  0.622 0.378  one Group1 179 1058   82 211 0.458974359 0.928070175
## 903  0.620 0.380  one Group1 180 1058   82 210 0.461538462 0.928070175
## 55   0.618 0.382 zero Group1 181 1056   84 209 0.464102564 0.926315789
## 264  0.618 0.382  one Group1 181 1056   84 209 0.464102564 0.926315789
## 1389 0.618 0.382 zero Group1 181 1056   84 209 0.464102564 0.926315789
## 486  0.616 0.384 zero Group1 181 1055   85 209 0.464102564 0.925438596
## 229  0.614 0.386 zero Group1 182 1054   86 208 0.466666667 0.924561404
## 1239 0.614 0.386  one Group1 182 1054   86 208 0.466666667 0.924561404
## 737  0.610 0.390 zero Group1 182 1053   87 208 0.466666667 0.923684211
## 461  0.608 0.392 zero Group1 183 1049   91 207 0.469230769 0.920175439
## 790  0.608 0.392 zero Group1 183 1049   91 207 0.469230769 0.920175439
## 992  0.608 0.392  one Group1 183 1049   91 207 0.469230769 0.920175439
## 1353 0.608 0.392 zero Group1 183 1049   91 207 0.469230769 0.920175439
## 1368 0.608 0.392 zero Group1 183 1049   91 207 0.469230769 0.920175439
## 858  0.606 0.394 zero Group1 183 1047   93 207 0.469230769 0.918421053
## 1460 0.606 0.394 zero Group1 183 1047   93 207 0.469230769 0.918421053
## 147  0.604 0.396 zero Group1 184 1044   96 206 0.471794872 0.915789474
## 401  0.604 0.396 zero Group1 184 1044   96 206 0.471794872 0.915789474
## 445  0.604 0.396 zero Group1 184 1044   96 206 0.471794872 0.915789474
## 846  0.604 0.396  one Group1 184 1044   96 206 0.471794872 0.915789474
## 1513 0.602 0.398 zero Group1 184 1043   97 206 0.471794872 0.914912281
## 901  0.600 0.400  one Group1 185 1043   97 205 0.474358974 0.914912281
## 998  0.598 0.402  one Group1 187 1043   97 203 0.479487179 0.914912281
## 1338 0.598 0.402  one Group1 187 1043   97 203 0.479487179 0.914912281
## 1070 0.596 0.404  one Group1 189 1043   97 201 0.484615385 0.914912281
## 1309 0.596 0.404  one Group1 189 1043   97 201 0.484615385 0.914912281
## 107  0.594 0.406 zero Group1 190 1041   99 200 0.487179487 0.913157895
## 373  0.594 0.406 zero Group1 190 1041   99 200 0.487179487 0.913157895
## 1138 0.594 0.406  one Group1 190 1041   99 200 0.487179487 0.913157895
## 607  0.592 0.408  one Group1 191 1040  100 199 0.489743590 0.912280702
## 623  0.592 0.408 zero Group1 191 1040  100 199 0.489743590 0.912280702
## 983  0.590 0.410 zero Group1 191 1038  102 199 0.489743590 0.910526316
## 1119 0.590 0.410 zero Group1 191 1038  102 199 0.489743590 0.910526316
## 169  0.588 0.412  one Group1 193 1036  104 197 0.494871795 0.908771930
## 357  0.588 0.412  one Group1 193 1036  104 197 0.494871795 0.908771930
## 455  0.588 0.412 zero Group1 193 1036  104 197 0.494871795 0.908771930
## 856  0.588 0.412 zero Group1 193 1036  104 197 0.494871795 0.908771930
## 1384 0.586 0.414  one Group1 194 1035  105 196 0.497435897 0.907894737
## 1462 0.586 0.414 zero Group1 194 1035  105 196 0.497435897 0.907894737
## 222  0.584 0.416 zero Group1 195 1034  106 195 0.500000000 0.907017544
## 1162 0.584 0.416  one Group1 195 1034  106 195 0.500000000 0.907017544
## 31   0.582 0.418 zero Group1 196 1033  107 194 0.502564103 0.906140351
## 1480 0.582 0.418  one Group1 196 1033  107 194 0.502564103 0.906140351
## 267  0.580 0.420  one Group1 197 1033  107 193 0.505128205 0.906140351
## 408  0.574 0.426  one Group1 198 1033  107 192 0.507692308 0.906140351
## 3    0.572 0.428 zero Group1 198 1031  109 192 0.507692308 0.904385965
## 492  0.572 0.428 zero Group1 198 1031  109 192 0.507692308 0.904385965
## 795  0.570 0.430 zero Group1 198 1029  111 192 0.507692308 0.902631579
## 1494 0.570 0.430 zero Group1 198 1029  111 192 0.507692308 0.902631579
## 625  0.568 0.432 zero Group1 198 1028  112 192 0.507692308 0.901754386
## 906  0.566 0.434  one Group1 199 1028  112 191 0.510256410 0.901754386
## 617  0.562 0.438 zero Group1 201 1026  114 189 0.515384615 0.900000000
## 893  0.562 0.438  one Group1 201 1026  114 189 0.515384615 0.900000000
## 1118 0.562 0.438 zero Group1 201 1026  114 189 0.515384615 0.900000000
## 1411 0.562 0.438  one Group1 201 1026  114 189 0.515384615 0.900000000
## 634  0.560 0.440 zero Group1 201 1025  115 189 0.515384615 0.899122807
## 885  0.558 0.442 zero Group1 201 1024  116 189 0.515384615 0.898245614
## 244  0.556 0.444 zero Group1 201 1021  119 189 0.515384615 0.895614035
## 1351 0.556 0.444 zero Group1 201 1021  119 189 0.515384615 0.895614035
## 1392 0.556 0.444 zero Group1 201 1021  119 189 0.515384615 0.895614035
## 203  0.554 0.446 zero Group1 202 1020  120 188 0.517948718 0.894736842
## 844  0.554 0.446  one Group1 202 1020  120 188 0.517948718 0.894736842
## 645  0.552 0.448 zero Group1 202 1018  122 188 0.517948718 0.892982456
## 706  0.552 0.448 zero Group1 202 1018  122 188 0.517948718 0.892982456
## 1080 0.550 0.450 zero Group1 202 1017  123 188 0.517948718 0.892105263
## 588  0.548 0.452 zero Group1 202 1014  126 188 0.517948718 0.889473684
## 1297 0.548 0.452 zero Group1 202 1014  126 188 0.517948718 0.889473684
## 1367 0.548 0.452 zero Group1 202 1014  126 188 0.517948718 0.889473684
## 1137 0.546 0.454  one Group1 203 1014  126 187 0.520512821 0.889473684
## 648  0.544 0.456  one Group1 204 1013  127 186 0.523076923 0.888596491
## 744  0.544 0.456 zero Group1 204 1013  127 186 0.523076923 0.888596491
## 179  0.542 0.458 zero Group1 204 1012  128 186 0.523076923 0.887719298
## 50   0.540 0.460 zero Group1 206 1009  131 184 0.528205128 0.885087719
## 410  0.540 0.460  one Group1 206 1009  131 184 0.528205128 0.885087719
## 447  0.540 0.460 zero Group1 206 1009  131 184 0.528205128 0.885087719
## 515  0.540 0.460 zero Group1 206 1009  131 184 0.528205128 0.885087719
## 1232 0.540 0.460  one Group1 206 1009  131 184 0.528205128 0.885087719
## 446  0.538 0.462 zero Group1 206 1007  133 184 0.528205128 0.883333333
## 1055 0.538 0.462 zero Group1 206 1007  133 184 0.528205128 0.883333333
## 41   0.536 0.464 zero Group1 206 1006  134 184 0.528205128 0.882456140
## 166  0.534 0.466  one Group1 207 1006  134 183 0.530769231 0.882456140
## 1331 0.532 0.468  one Group1 208 1006  134 182 0.533333333 0.882456140
## 57   0.530 0.470 zero Group1 210 1003  137 180 0.538461538 0.879824561
## 518  0.530 0.470 zero Group1 210 1003  137 180 0.538461538 0.879824561
## 578  0.530 0.470  one Group1 210 1003  137 180 0.538461538 0.879824561
## 1231 0.530 0.470  one Group1 210 1003  137 180 0.538461538 0.879824561
## 1421 0.530 0.470 zero Group1 210 1003  137 180 0.538461538 0.879824561
## 627  0.526 0.474 zero Group1 212  999  141 178 0.543589744 0.876315789
## 630  0.526 0.474 zero Group1 212  999  141 178 0.543589744 0.876315789
## 825  0.526 0.474  one Group1 212  999  141 178 0.543589744 0.876315789
## 946  0.526 0.474 zero Group1 212  999  141 178 0.543589744 0.876315789
## 1005 0.526 0.474 zero Group1 212  999  141 178 0.543589744 0.876315789
## 1092 0.526 0.474  one Group1 212  999  141 178 0.543589744 0.876315789
## 720  0.524 0.476 zero Group1 212  998  142 178 0.543589744 0.875438596
## 275  0.522 0.478 zero Group1 214  996  144 176 0.548717949 0.873684211
## 308  0.522 0.478 zero Group1 214  996  144 176 0.548717949 0.873684211
## 580  0.522 0.478  one Group1 214  996  144 176 0.548717949 0.873684211
## 1305 0.522 0.478  one Group1 214  996  144 176 0.548717949 0.873684211
## 52   0.520 0.480 zero Group1 216  994  146 174 0.553846154 0.871929825
## 302  0.520 0.480 zero Group1 216  994  146 174 0.553846154 0.871929825
## 655  0.520 0.480  one Group1 216  994  146 174 0.553846154 0.871929825
## 907  0.520 0.480  one Group1 216  994  146 174 0.553846154 0.871929825
## 293  0.518 0.482 zero Group1 217  991  149 173 0.556410256 0.869298246
## 693  0.518 0.482 zero Group1 217  991  149 173 0.556410256 0.869298246
## 1247 0.518 0.482 zero Group1 217  991  149 173 0.556410256 0.869298246
## 1332 0.518 0.482  one Group1 217  991  149 173 0.556410256 0.869298246
## 116  0.516 0.484  one Group1 219  991  149 171 0.561538462 0.869298246
## 258  0.516 0.484  one Group1 219  991  149 171 0.561538462 0.869298246
## 496  0.514 0.486 zero Group1 219  989  151 171 0.561538462 0.867543860
## 674  0.514 0.486 zero Group1 219  989  151 171 0.561538462 0.867543860
## 463  0.512 0.488 zero Group1 220  987  153 170 0.564102564 0.865789474
## 503  0.512 0.488 zero Group1 220  987  153 170 0.564102564 0.865789474
## 610  0.512 0.488  one Group1 220  987  153 170 0.564102564 0.865789474
## 36   0.510 0.490 zero Group1 220  985  155 170 0.564102564 0.864035088
## 1262 0.510 0.490 zero Group1 220  985  155 170 0.564102564 0.864035088
## 252  0.508 0.492 zero Group1 221  984  156 169 0.566666667 0.863157895
## 1339 0.508 0.492  one Group1 221  984  156 169 0.566666667 0.863157895
## 10   0.506 0.494 zero Group1 222  980  160 168 0.569230769 0.859649123
## 130  0.506 0.494 zero Group1 222  980  160 168 0.569230769 0.859649123
## 146  0.506 0.494 zero Group1 222  980  160 168 0.569230769 0.859649123
## 647  0.506 0.494  one Group1 222  980  160 168 0.569230769 0.859649123
## 1435 0.506 0.494 zero Group1 222  980  160 168 0.569230769 0.859649123
## 402  0.504 0.496 zero Group1 222  976  164 168 0.569230769 0.856140351
## 837  0.504 0.496 zero Group1 222  976  164 168 0.569230769 0.856140351
## 1217 0.504 0.496 zero Group1 222  976  164 168 0.569230769 0.856140351
## 1286 0.504 0.496 zero Group1 222  976  164 168 0.569230769 0.856140351
## 409  0.502 0.498  one Group1 223  975  165 167 0.571794872 0.855263158
## 1220 0.502 0.498 zero Group1 223  975  165 167 0.571794872 0.855263158
## 641  0.500 0.500 zero Group1 224  973  167 166 0.574358974 0.853508772
## 728  0.500 0.500 zero Group1 224  973  167 166 0.574358974 0.853508772
## 976  0.500 0.500  one Group1 224  973  167 166 0.574358974 0.853508772
## 678  0.498 0.502  one Group1 225  972  168 165 0.576923077 0.852631579
## 1036 0.498 0.502 zero Group1 225  972  168 165 0.576923077 0.852631579
## 190  0.494 0.506  one Group1 228  972  168 162 0.584615385 0.852631579
## 443  0.494 0.506  one Group1 228  972  168 162 0.584615385 0.852631579
## 1143 0.494 0.506  one Group1 228  972  168 162 0.584615385 0.852631579
## 734  0.492 0.508 zero Group1 228  969  171 162 0.584615385 0.850000000
## 1350 0.492 0.508 zero Group1 228  969  171 162 0.584615385 0.850000000
## 1430 0.492 0.508 zero Group1 228  969  171 162 0.584615385 0.850000000
## 207  0.490 0.510 zero Group1 228  965  175 162 0.584615385 0.846491228
## 241  0.490 0.510 zero Group1 228  965  175 162 0.584615385 0.846491228
## 726  0.490 0.510 zero Group1 228  965  175 162 0.584615385 0.846491228
## 1214 0.490 0.510 zero Group1 228  965  175 162 0.584615385 0.846491228
## 78   0.488 0.512 zero Group1 230  962  178 160 0.589743590 0.843859649
## 606  0.488 0.512  one Group1 230  962  178 160 0.589743590 0.843859649
## 894  0.488 0.512  one Group1 230  962  178 160 0.589743590 0.843859649
## 1102 0.488 0.512 zero Group1 230  962  178 160 0.589743590 0.843859649
## 1467 0.488 0.512 zero Group1 230  962  178 160 0.589743590 0.843859649
## 650  0.486 0.514  one Group1 231  959  181 159 0.592307692 0.841228070
## 689  0.486 0.514 zero Group1 231  959  181 159 0.592307692 0.841228070
## 798  0.486 0.514 zero Group1 231  959  181 159 0.592307692 0.841228070
## 1207 0.486 0.514 zero Group1 231  959  181 159 0.592307692 0.841228070
## 239  0.484 0.516 zero Group1 232  955  185 158 0.594871795 0.837719298
## 506  0.484 0.516  one Group1 232  955  185 158 0.594871795 0.837719298
## 781  0.484 0.516 zero Group1 232  955  185 158 0.594871795 0.837719298
## 1072 0.484 0.516 zero Group1 232  955  185 158 0.594871795 0.837719298
## 1279 0.484 0.516 zero Group1 232  955  185 158 0.594871795 0.837719298
## 191  0.482 0.518  one Group1 234  954  186 156 0.600000000 0.836842105
## 261  0.482 0.518  one Group1 234  954  186 156 0.600000000 0.836842105
## 1075 0.482 0.518 zero Group1 234  954  186 156 0.600000000 0.836842105
## 618  0.480 0.520 zero Group1 234  953  187 156 0.600000000 0.835964912
## 301  0.478 0.522 zero Group1 235  949  191 155 0.602564103 0.832456140
## 540  0.478 0.522 zero Group1 235  949  191 155 0.602564103 0.832456140
## 677  0.478 0.522  one Group1 235  949  191 155 0.602564103 0.832456140
## 1218 0.478 0.522 zero Group1 235  949  191 155 0.602564103 0.832456140
## 1278 0.478 0.522 zero Group1 235  949  191 155 0.602564103 0.832456140
## 245  0.476 0.524 zero Group1 237  946  194 153 0.607692308 0.829824561
## 544  0.476 0.524  one Group1 237  946  194 153 0.607692308 0.829824561
## 604  0.476 0.524  one Group1 237  946  194 153 0.607692308 0.829824561
## 779  0.476 0.524 zero Group1 237  946  194 153 0.607692308 0.829824561
## 1248 0.476 0.524 zero Group1 237  946  194 153 0.607692308 0.829824561
## 774  0.474 0.526 zero Group1 237  943  197 153 0.607692308 0.827192982
## 875  0.474 0.526 zero Group1 237  943  197 153 0.607692308 0.827192982
## 1371 0.474 0.526 zero Group1 237  943  197 153 0.607692308 0.827192982
## 879  0.472 0.528  one Group1 238  943  197 152 0.610256410 0.827192982
## 189  0.470 0.530  one Group1 240  942  198 150 0.615384615 0.826315789
## 395  0.470 0.530 zero Group1 240  942  198 150 0.615384615 0.826315789
## 676  0.470 0.530  one Group1 240  942  198 150 0.615384615 0.826315789
## 683  0.468 0.532  one Group1 242  940  200 148 0.620512821 0.824561404
## 729  0.468 0.532 zero Group1 242  940  200 148 0.620512821 0.824561404
## 862  0.468 0.532 zero Group1 242  940  200 148 0.620512821 0.824561404
## 993  0.468 0.532  one Group1 242  940  200 148 0.620512821 0.824561404
## 1    0.466 0.534 zero Group1 242  938  202 148 0.620512821 0.822807018
## 1436 0.466 0.534 zero Group1 242  938  202 148 0.620512821 0.822807018
## 382  0.464 0.536 zero Group1 242  936  204 148 0.620512821 0.821052632
## 797  0.464 0.536 zero Group1 242  936  204 148 0.620512821 0.821052632
## 661  0.462 0.538  one Group1 243  935  205 147 0.623076923 0.820175439
## 1120 0.462 0.538 zero Group1 243  935  205 147 0.623076923 0.820175439
## 195  0.460 0.540  one Group1 244  934  206 146 0.625641026 0.819298246
## 385  0.460 0.540 zero Group1 244  934  206 146 0.625641026 0.819298246
## 30   0.458 0.542 zero Group1 244  933  207 146 0.625641026 0.818421053
## 97   0.456 0.544 zero Group1 245  932  208 145 0.628205128 0.817543860
## 908  0.456 0.544  one Group1 245  932  208 145 0.628205128 0.817543860
## 1195 0.452 0.548  one Group1 246  932  208 144 0.630769231 0.817543860
## 470  0.450 0.550  one Group1 248  927  213 142 0.635897436 0.813157895
## 592  0.450 0.550 zero Group1 248  927  213 142 0.635897436 0.813157895
## 727  0.450 0.550 zero Group1 248  927  213 142 0.635897436 0.813157895
## 912  0.450 0.550 zero Group1 248  927  213 142 0.635897436 0.813157895
## 1088 0.450 0.550 zero Group1 248  927  213 142 0.635897436 0.813157895
## 1273 0.450 0.550  one Group1 248  927  213 142 0.635897436 0.813157895
## 1373 0.450 0.550 zero Group1 248  927  213 142 0.635897436 0.813157895
## 13   0.448 0.552 zero Group1 249  926  214 141 0.638461538 0.812280702
## 1330 0.448 0.552  one Group1 249  926  214 141 0.638461538 0.812280702
## 174  0.446 0.554 zero Group1 250  925  215 140 0.641025641 0.811403509
## 900  0.446 0.554  one Group1 250  925  215 140 0.641025641 0.811403509
## 904  0.444 0.556  one Group1 251  925  215 139 0.643589744 0.811403509
## 513  0.440 0.560  one Group1 253  923  217 137 0.648717949 0.809649123
## 1216 0.440 0.560 zero Group1 253  923  217 137 0.648717949 0.809649123
## 1402 0.440 0.560 zero Group1 253  923  217 137 0.648717949 0.809649123
## 1484 0.440 0.560  one Group1 253  923  217 137 0.648717949 0.809649123
## 914  0.438 0.562 zero Group1 253  921  219 137 0.648717949 0.807894737
## 1151 0.438 0.562 zero Group1 253  921  219 137 0.648717949 0.807894737
## 149  0.436 0.564 zero Group1 253  920  220 137 0.648717949 0.807017544
## 724  0.434 0.566 zero Group1 253  918  222 137 0.648717949 0.805263158
## 1077 0.434 0.566 zero Group1 253  918  222 137 0.648717949 0.805263158
## 336  0.432 0.568  one Group1 254  914  226 136 0.651282051 0.801754386
## 949  0.432 0.568 zero Group1 254  914  226 136 0.651282051 0.801754386
## 1035 0.432 0.568 zero Group1 254  914  226 136 0.651282051 0.801754386
## 1047 0.432 0.568 zero Group1 254  914  226 136 0.651282051 0.801754386
## 1448 0.432 0.568 zero Group1 254  914  226 136 0.651282051 0.801754386
## 221  0.430 0.570 zero Group1 254  913  227 136 0.651282051 0.800877193
## 138  0.428 0.572 zero Group1 254  909  231 136 0.651282051 0.797368421
## 226  0.428 0.572 zero Group1 254  909  231 136 0.651282051 0.797368421
## 535  0.428 0.572 zero Group1 254  909  231 136 0.651282051 0.797368421
## 665  0.428 0.572 zero Group1 254  909  231 136 0.651282051 0.797368421
## 270  0.424 0.576  one Group1 255  907  233 135 0.653846154 0.795614035
## 457  0.424 0.576 zero Group1 255  907  233 135 0.653846154 0.795614035
## 1450 0.424 0.576 zero Group1 255  907  233 135 0.653846154 0.795614035
## 11   0.422 0.578 zero Group1 255  904  236 135 0.653846154 0.792982456
## 76   0.422 0.578 zero Group1 255  904  236 135 0.653846154 0.792982456
## 228  0.422 0.578 zero Group1 255  904  236 135 0.653846154 0.792982456
## 1181 0.420 0.580 zero Group1 256  903  237 134 0.656410256 0.792105263
## 1238 0.420 0.580  one Group1 256  903  237 134 0.656410256 0.792105263
## 291  0.418 0.582 zero Group1 257  900  240 133 0.658974359 0.789473684
## 899  0.418 0.582  one Group1 257  900  240 133 0.658974359 0.789473684
## 932  0.418 0.582 zero Group1 257  900  240 133 0.658974359 0.789473684
## 969  0.418 0.582 zero Group1 257  900  240 133 0.658974359 0.789473684
## 257  0.416 0.584 zero Group1 257  898  242 133 0.658974359 0.787719298
## 948  0.416 0.584 zero Group1 257  898  242 133 0.658974359 0.787719298
## 6    0.414 0.586 zero Group1 258  896  244 132 0.661538462 0.785964912
## 1063 0.414 0.586  one Group1 258  896  244 132 0.661538462 0.785964912
## 1329 0.414 0.586 zero Group1 258  896  244 132 0.661538462 0.785964912
## 120  0.412 0.588  one Group1 259  895  245 131 0.664102564 0.785087719
## 640  0.412 0.588 zero Group1 259  895  245 131 0.664102564 0.785087719
## 38   0.410 0.590 zero Group1 259  893  247 131 0.664102564 0.783333333
## 546  0.410 0.590 zero Group1 259  893  247 131 0.664102564 0.783333333
## 1408 0.408 0.592  one Group1 261  893  247 129 0.669230769 0.783333333
## 1487 0.408 0.592  one Group1 261  893  247 129 0.669230769 0.783333333
## 68   0.406 0.594 zero Group1 261  888  252 129 0.669230769 0.778947368
## 278  0.406 0.594 zero Group1 261  888  252 129 0.669230769 0.778947368
## 776  0.406 0.594 zero Group1 261  888  252 129 0.669230769 0.778947368
## 1192 0.406 0.594 zero Group1 261  888  252 129 0.669230769 0.778947368
## 1396 0.406 0.594 zero Group1 261  888  252 129 0.669230769 0.778947368
## 1006 0.404 0.596 zero Group1 262  887  253 128 0.671794872 0.778070175
## 1417 0.404 0.596  one Group1 262  887  253 128 0.671794872 0.778070175
## 25   0.402 0.598 zero Group1 263  883  257 127 0.674358974 0.774561404
## 155  0.402 0.598 zero Group1 263  883  257 127 0.674358974 0.774561404
## 847  0.402 0.598  one Group1 263  883  257 127 0.674358974 0.774561404
## 956  0.402 0.598 zero Group1 263  883  257 127 0.674358974 0.774561404
## 1461 0.402 0.598 zero Group1 263  883  257 127 0.674358974 0.774561404
## 56   0.400 0.600 zero Group1 263  879  261 127 0.674358974 0.771052632
## 449  0.400 0.600 zero Group1 263  879  261 127 0.674358974 0.771052632
## 483  0.400 0.600 zero Group1 263  879  261 127 0.674358974 0.771052632
## 1422 0.400 0.600 zero Group1 263  879  261 127 0.674358974 0.771052632
## 19   0.396 0.604 zero Group1 263  876  264 127 0.674358974 0.768421053
## 187  0.396 0.604 zero Group1 263  876  264 127 0.674358974 0.768421053
## 1349 0.396 0.604 zero Group1 263  876  264 127 0.674358974 0.768421053
## 833  0.394 0.606  one Group1 264  874  266 126 0.676923077 0.766666667
## 952  0.394 0.606 zero Group1 264  874  266 126 0.676923077 0.766666667
## 1211 0.394 0.606 zero Group1 264  874  266 126 0.676923077 0.766666667
## 346  0.392 0.608 zero Group1 266  870  270 124 0.682051282 0.763157895
## 434  0.392 0.608  one Group1 266  870  270 124 0.682051282 0.763157895
## 913  0.392 0.608 zero Group1 266  870  270 124 0.682051282 0.763157895
## 1076 0.392 0.608 zero Group1 266  870  270 124 0.682051282 0.763157895
## 1242 0.392 0.608 zero Group1 266  870  270 124 0.682051282 0.763157895
## 1306 0.392 0.608  one Group1 266  870  270 124 0.682051282 0.763157895
## 172  0.390 0.610  one Group1 267  868  272 123 0.684615385 0.761403509
## 629  0.390 0.610 zero Group1 267  868  272 123 0.684615385 0.761403509
## 1193 0.390 0.610 zero Group1 267  868  272 123 0.684615385 0.761403509
## 584  0.388 0.612  one Group1 269  868  272 121 0.689743590 0.761403509
## 1414 0.388 0.612  one Group1 269  868  272 121 0.689743590 0.761403509
## 831  0.386 0.614  one Group1 270  864  276 120 0.692307692 0.757894737
## 1024 0.386 0.614 zero Group1 270  864  276 120 0.692307692 0.757894737
## 1147 0.386 0.614 zero Group1 270  864  276 120 0.692307692 0.757894737
## 1148 0.386 0.614 zero Group1 270  864  276 120 0.692307692 0.757894737
## 1263 0.386 0.614 zero Group1 270  864  276 120 0.692307692 0.757894737
## 283  0.384 0.616 zero Group1 271  861  279 119 0.694871795 0.755263158
## 714  0.384 0.616 zero Group1 271  861  279 119 0.694871795 0.755263158
## 1302 0.384 0.616 zero Group1 271  861  279 119 0.694871795 0.755263158
## 1419 0.384 0.616  one Group1 271  861  279 119 0.694871795 0.755263158
## 920  0.382 0.618  one Group1 272  859  281 118 0.697435897 0.753508772
## 971  0.382 0.618 zero Group1 272  859  281 118 0.697435897 0.753508772
## 1026 0.382 0.618 zero Group1 272  859  281 118 0.697435897 0.753508772
## 696  0.380 0.620 zero Group1 272  857  283 118 0.697435897 0.751754386
## 1172 0.380 0.620 zero Group1 272  857  283 118 0.697435897 0.751754386
## 95   0.378 0.622 zero Group1 273  855  285 117 0.700000000 0.750000000
## 694  0.378 0.622 zero Group1 273  855  285 117 0.700000000 0.750000000
## 1199 0.378 0.622  one Group1 273  855  285 117 0.700000000 0.750000000
## 307  0.376 0.624 zero Group1 275  854  286 115 0.705128205 0.749122807
## 413  0.376 0.624  one Group1 275  854  286 115 0.705128205 0.749122807
## 996  0.376 0.624  one Group1 275  854  286 115 0.705128205 0.749122807
## 18   0.374 0.626 zero Group1 276  849  291 114 0.707692308 0.744736842
## 33   0.374 0.626 zero Group1 276  849  291 114 0.707692308 0.744736842
## 173  0.374 0.626  one Group1 276  849  291 114 0.707692308 0.744736842
## 792  0.374 0.626 zero Group1 276  849  291 114 0.707692308 0.744736842
## 1209 0.374 0.626 zero Group1 276  849  291 114 0.707692308 0.744736842
## 1469 0.374 0.626 zero Group1 276  849  291 114 0.707692308 0.744736842
## 711  0.372 0.628 zero Group1 276  847  293 114 0.707692308 0.742982456
## 1356 0.372 0.628 zero Group1 276  847  293 114 0.707692308 0.742982456
## 49   0.370 0.630 zero Group1 276  846  294 114 0.707692308 0.742105263
## 304  0.368 0.632 zero Group1 279  842  298 111 0.715384615 0.738596491
## 347  0.368 0.632 zero Group1 279  842  298 111 0.715384615 0.738596491
## 394  0.368 0.632 zero Group1 279  842  298 111 0.715384615 0.738596491
## 412  0.368 0.632  one Group1 279  842  298 111 0.715384615 0.738596491
## 666  0.368 0.632 zero Group1 279  842  298 111 0.715384615 0.738596491
## 829  0.368 0.632  one Group1 279  842  298 111 0.715384615 0.738596491
## 1312 0.368 0.632  one Group1 279  842  298 111 0.715384615 0.738596491
## 148  0.366 0.634 zero Group1 281  840  300 109 0.720512821 0.736842105
## 342  0.366 0.634  one Group1 281  840  300 109 0.720512821 0.736842105
## 752  0.366 0.634  one Group1 281  840  300 109 0.720512821 0.736842105
## 1108 0.366 0.634 zero Group1 281  840  300 109 0.720512821 0.736842105
## 268  0.364 0.636  one Group1 282  838  302 108 0.723076923 0.735087719
## 626  0.364 0.636 zero Group1 282  838  302 108 0.723076923 0.735087719
## 802  0.364 0.636 zero Group1 282  838  302 108 0.723076923 0.735087719
## 369  0.362 0.638  one Group1 283  838  302 107 0.725641026 0.735087719
## 159  0.360 0.640 zero Group1 283  834  306 107 0.725641026 0.731578947
## 697  0.360 0.640 zero Group1 283  834  306 107 0.725641026 0.731578947
## 730  0.360 0.640 zero Group1 283  834  306 107 0.725641026 0.731578947
## 1128 0.360 0.640 zero Group1 283  834  306 107 0.725641026 0.731578947
## 171  0.358 0.642  one Group1 285  834  306 105 0.730769231 0.731578947
## 1048 0.358 0.642  one Group1 285  834  306 105 0.730769231 0.731578947
## 20   0.356 0.644 zero Group1 286  829  311 104 0.733333333 0.727192982
## 595  0.356 0.644 zero Group1 286  829  311 104 0.733333333 0.727192982
## 911  0.356 0.644 zero Group1 286  829  311 104 0.733333333 0.727192982
## 1159 0.356 0.644 zero Group1 286  829  311 104 0.733333333 0.727192982
## 1235 0.356 0.644  one Group1 286  829  311 104 0.733333333 0.727192982
## 1275 0.356 0.644 zero Group1 286  829  311 104 0.733333333 0.727192982
## 150  0.352 0.648 zero Group1 288  824  316 102 0.738461538 0.722807018
## 575  0.352 0.648 zero Group1 288  824  316 102 0.738461538 0.722807018
## 853  0.352 0.648  one Group1 288  824  316 102 0.738461538 0.722807018
## 859  0.352 0.648 zero Group1 288  824  316 102 0.738461538 0.722807018
## 1009 0.352 0.648 zero Group1 288  824  316 102 0.738461538 0.722807018
## 1197 0.352 0.648  one Group1 288  824  316 102 0.738461538 0.722807018
## 1296 0.352 0.648 zero Group1 288  824  316 102 0.738461538 0.722807018
## 628  0.350 0.650 zero Group1 289  823  317 101 0.741025641 0.721929825
## 995  0.350 0.650  one Group1 289  823  317 101 0.741025641 0.721929825
## 34   0.348 0.652 zero Group1 290  816  324 100 0.743589744 0.715789474
## 325  0.348 0.652 zero Group1 290  816  324 100 0.743589744 0.715789474
## 562  0.348 0.652 zero Group1 290  816  324 100 0.743589744 0.715789474
## 652  0.348 0.652  one Group1 290  816  324 100 0.743589744 0.715789474
## 877  0.348 0.652 zero Group1 290  816  324 100 0.743589744 0.715789474
## 1056 0.348 0.652 zero Group1 290  816  324 100 0.743589744 0.715789474
## 1169 0.348 0.652 zero Group1 290  816  324 100 0.743589744 0.715789474
## 1347 0.348 0.652 zero Group1 290  816  324 100 0.743589744 0.715789474
## 505  0.346 0.654  one Group1 291  814  326  99 0.746153846 0.714035088
## 763  0.346 0.654 zero Group1 291  814  326  99 0.746153846 0.714035088
## 1213 0.346 0.654 zero Group1 291  814  326  99 0.746153846 0.714035088
## 94   0.344 0.656 zero Group1 292  810  330  98 0.748717949 0.710526316
## 219  0.344 0.656 zero Group1 292  810  330  98 0.748717949 0.710526316
## 923  0.344 0.656  one Group1 292  810  330  98 0.748717949 0.710526316
## 955  0.344 0.656 zero Group1 292  810  330  98 0.748717949 0.710526316
## 970  0.344 0.656 zero Group1 292  810  330  98 0.748717949 0.710526316
## 164  0.342 0.658 zero Group1 293  807  333  97 0.751282051 0.707894737
## 813  0.342 0.658 zero Group1 293  807  333  97 0.751282051 0.707894737
## 1020 0.342 0.658 zero Group1 293  807  333  97 0.751282051 0.707894737
## 1144 0.342 0.658  one Group1 293  807  333  97 0.751282051 0.707894737
## 123  0.340 0.660  one Group1 295  805  335  95 0.756410256 0.706140351
## 973  0.340 0.660 zero Group1 295  805  335  95 0.756410256 0.706140351
## 1021 0.340 0.660 zero Group1 295  805  335  95 0.756410256 0.706140351
## 1336 0.340 0.660  one Group1 295  805  335  95 0.756410256 0.706140351
## 474  0.338 0.662 zero Group1 296  802  338  94 0.758974359 0.703508772
## 608  0.338 0.662  one Group1 296  802  338  94 0.758974359 0.703508772
## 990  0.338 0.662 zero Group1 296  802  338  94 0.758974359 0.703508772
## 1252 0.338 0.662 zero Group1 296  802  338  94 0.758974359 0.703508772
## 157  0.336 0.664 zero Group1 296  799  341  94 0.758974359 0.700877193
## 526  0.336 0.664 zero Group1 296  799  341  94 0.758974359 0.700877193
## 1089 0.336 0.664 zero Group1 296  799  341  94 0.758974359 0.700877193
## 105  0.334 0.666 zero Group1 296  796  344  94 0.758974359 0.698245614
## 393  0.334 0.666 zero Group1 296  796  344  94 0.758974359 0.698245614
## 1289 0.334 0.666 zero Group1 296  796  344  94 0.758974359 0.698245614
## 44   0.332 0.668 zero Group1 296  793  347  94 0.758974359 0.695614035
## 87   0.332 0.668 zero Group1 296  793  347  94 0.758974359 0.695614035
## 1224 0.332 0.668 zero Group1 296  793  347  94 0.758974359 0.695614035
## 282  0.330 0.670 zero Group1 296  789  351  94 0.758974359 0.692105263
## 735  0.330 0.670 zero Group1 296  789  351  94 0.758974359 0.692105263
## 778  0.330 0.670 zero Group1 296  789  351  94 0.758974359 0.692105263
## 793  0.330 0.670 zero Group1 296  789  351  94 0.758974359 0.692105263
## 599  0.328 0.672 zero Group1 298  780  360  92 0.764102564 0.684210526
## 616  0.328 0.672 zero Group1 298  780  360  92 0.764102564 0.684210526
## 780  0.328 0.672 zero Group1 298  780  360  92 0.764102564 0.684210526
## 809  0.328 0.672 zero Group1 298  780  360  92 0.764102564 0.684210526
## 815  0.328 0.672 zero Group1 298  780  360  92 0.764102564 0.684210526
## 917  0.328 0.672  one Group1 298  780  360  92 0.764102564 0.684210526
## 940  0.328 0.672 zero Group1 298  780  360  92 0.764102564 0.684210526
## 1178 0.328 0.672 zero Group1 298  780  360  92 0.764102564 0.684210526
## 1272 0.328 0.672  one Group1 298  780  360  92 0.764102564 0.684210526
## 1287 0.328 0.672 zero Group1 298  780  360  92 0.764102564 0.684210526
## 1303 0.328 0.672 zero Group1 298  780  360  92 0.764102564 0.684210526
## 279  0.326 0.674 zero Group1 300  777  363  90 0.769230769 0.681578947
## 493  0.326 0.674 zero Group1 300  777  363  90 0.769230769 0.681578947
## 542  0.326 0.674  one Group1 300  777  363  90 0.769230769 0.681578947
## 874  0.326 0.674 zero Group1 300  777  363  90 0.769230769 0.681578947
## 1145 0.326 0.674  one Group1 300  777  363  90 0.769230769 0.681578947
## 184  0.324 0.676 zero Group1 300  774  366  90 0.769230769 0.678947368
## 768  0.324 0.676 zero Group1 300  774  366  90 0.769230769 0.678947368
## 1420 0.324 0.676 zero Group1 300  774  366  90 0.769230769 0.678947368
## 153  0.322 0.678 zero Group1 300  770  370  90 0.769230769 0.675438596
## 384  0.322 0.678 zero Group1 300  770  370  90 0.769230769 0.675438596
## 872  0.322 0.678 zero Group1 300  770  370  90 0.769230769 0.675438596
## 1317 0.322 0.678 zero Group1 300  770  370  90 0.769230769 0.675438596
## 220  0.320 0.680 zero Group1 301  766  374  89 0.771794872 0.671929825
## 319  0.320 0.680 zero Group1 301  766  374  89 0.771794872 0.671929825
## 707  0.320 0.680 zero Group1 301  766  374  89 0.771794872 0.671929825
## 865  0.320 0.680 zero Group1 301  766  374  89 0.771794872 0.671929825
## 1093 0.320 0.680  one Group1 301  766  374  89 0.771794872 0.671929825
## 747  0.318 0.682  one Group1 302  764  376  88 0.774358974 0.670175439
## 1208 0.318 0.682 zero Group1 302  764  376  88 0.774358974 0.670175439
## 1505 0.318 0.682 zero Group1 302  764  376  88 0.774358974 0.670175439
## 517  0.316 0.684 zero Group1 302  760  380  88 0.774358974 0.666666667
## 561  0.316 0.684 zero Group1 302  760  380  88 0.774358974 0.666666667
## 767  0.316 0.684 zero Group1 302  760  380  88 0.774358974 0.666666667
## 1129 0.316 0.684 zero Group1 302  760  380  88 0.774358974 0.666666667
## 224  0.314 0.686 zero Group1 303  759  381  87 0.776923077 0.665789474
## 1194 0.314 0.686  one Group1 303  759  381  87 0.776923077 0.665789474
## 133  0.312 0.688 zero Group1 304  754  386  86 0.779487179 0.661403509
## 145  0.312 0.688 zero Group1 304  754  386  86 0.779487179 0.661403509
## 569  0.312 0.688 zero Group1 304  754  386  86 0.779487179 0.661403509
## 777  0.312 0.688 zero Group1 304  754  386  86 0.779487179 0.661403509
## 926  0.312 0.688  one Group1 304  754  386  86 0.779487179 0.661403509
## 1043 0.312 0.688 zero Group1 304  754  386  86 0.779487179 0.661403509
## 27   0.310 0.690 zero Group1 304  749  391  86 0.779487179 0.657017544
## 63   0.310 0.690 zero Group1 304  749  391  86 0.779487179 0.657017544
## 326  0.310 0.690 zero Group1 304  749  391  86 0.779487179 0.657017544
## 1397 0.310 0.690 zero Group1 304  749  391  86 0.779487179 0.657017544
## 1512 0.310 0.690 zero Group1 304  749  391  86 0.779487179 0.657017544
## 495  0.308 0.692 zero Group1 306  745  395  84 0.784615385 0.653508772
## 639  0.308 0.692 zero Group1 306  745  395  84 0.784615385 0.653508772
## 1098 0.308 0.692 zero Group1 306  745  395  84 0.784615385 0.653508772
## 1133 0.308 0.692 zero Group1 306  745  395  84 0.784615385 0.653508772
## 1164 0.308 0.692  one Group1 306  745  395  84 0.784615385 0.653508772
## 1304 0.308 0.692  one Group1 306  745  395  84 0.784615385 0.653508772
## 32   0.306 0.694 zero Group1 307  741  399  83 0.787179487 0.650000000
## 225  0.306 0.694 zero Group1 307  741  399  83 0.787179487 0.650000000
## 739  0.306 0.694 zero Group1 307  741  399  83 0.787179487 0.650000000
## 766  0.306 0.694 zero Group1 307  741  399  83 0.787179487 0.650000000
## 1067 0.306 0.694  one Group1 307  741  399  83 0.787179487 0.650000000
## 297  0.304 0.696 zero Group1 308  737  403  82 0.789743590 0.646491228
## 380  0.304 0.696 zero Group1 308  737  403  82 0.789743590 0.646491228
## 602  0.304 0.696 zero Group1 308  737  403  82 0.789743590 0.646491228
## 871  0.304 0.696 zero Group1 308  737  403  82 0.789743590 0.646491228
## 1123 0.304 0.696  one Group1 308  737  403  82 0.789743590 0.646491228
## 271  0.302 0.698 zero Group1 309  735  405  81 0.792307692 0.644736842
## 1233 0.302 0.698  one Group1 309  735  405  81 0.792307692 0.644736842
## 1244 0.302 0.698 zero Group1 309  735  405  81 0.792307692 0.644736842
## 218  0.300 0.700 zero Group1 309  729  411  81 0.792307692 0.639473684
## 958  0.300 0.700 zero Group1 309  729  411  81 0.792307692 0.639473684
## 984  0.300 0.700 zero Group1 309  729  411  81 0.792307692 0.639473684
## 1042 0.300 0.700 zero Group1 309  729  411  81 0.792307692 0.639473684
## 1060 0.300 0.700 zero Group1 309  729  411  81 0.792307692 0.639473684
## 1391 0.300 0.700 zero Group1 309  729  411  81 0.792307692 0.639473684
## 112  0.298 0.702 zero Group1 310  727  413  80 0.794871795 0.637719298
## 262  0.298 0.702  one Group1 310  727  413  80 0.794871795 0.637719298
## 882  0.298 0.702 zero Group1 310  727  413  80 0.794871795 0.637719298
## 624  0.296 0.704 zero Group1 310  726  414  80 0.794871795 0.636842105
## 17   0.294 0.706 zero Group1 310  723  417  80 0.794871795 0.634210526
## 280  0.294 0.706 zero Group1 310  723  417  80 0.794871795 0.634210526
## 712  0.294 0.706 zero Group1 310  723  417  80 0.794871795 0.634210526
## 165  0.292 0.708 zero Group1 312  717  423  78 0.800000000 0.628947368
## 246  0.292 0.708 zero Group1 312  717  423  78 0.800000000 0.628947368
## 341  0.292 0.708  one Group1 312  717  423  78 0.800000000 0.628947368
## 760  0.292 0.708  one Group1 312  717  423  78 0.800000000 0.628947368
## 794  0.292 0.708 zero Group1 312  717  423  78 0.800000000 0.628947368
## 822  0.292 0.708 zero Group1 312  717  423  78 0.800000000 0.628947368
## 863  0.292 0.708 zero Group1 312  717  423  78 0.800000000 0.628947368
## 1285 0.292 0.708 zero Group1 312  717  423  78 0.800000000 0.628947368
## 186  0.290 0.710 zero Group1 312  711  429  78 0.800000000 0.623684211
## 198  0.290 0.710 zero Group1 312  711  429  78 0.800000000 0.623684211
## 333  0.290 0.710 zero Group1 312  711  429  78 0.800000000 0.623684211
## 1033 0.290 0.710 zero Group1 312  711  429  78 0.800000000 0.623684211
## 1479 0.290 0.710 zero Group1 312  711  429  78 0.800000000 0.623684211
## 1495 0.290 0.710 zero Group1 312  711  429  78 0.800000000 0.623684211
## 292  0.288 0.712 zero Group1 312  708  432  78 0.800000000 0.621052632
## 377  0.288 0.712 zero Group1 312  708  432  78 0.800000000 0.621052632
## 1366 0.288 0.712 zero Group1 312  708  432  78 0.800000000 0.621052632
## 4    0.286 0.714 zero Group1 313  705  435  77 0.802564103 0.618421053
## 1165 0.286 0.714  one Group1 313  705  435  77 0.802564103 0.618421053
## 1298 0.286 0.714 zero Group1 313  705  435  77 0.802564103 0.618421053
## 1496 0.286 0.714 zero Group1 313  705  435  77 0.802564103 0.618421053
## 1105 0.284 0.716 zero Group1 314  702  438  76 0.805128205 0.615789474
## 1251 0.284 0.716 zero Group1 314  702  438  76 0.805128205 0.615789474
## 1486 0.284 0.716  one Group1 314  702  438  76 0.805128205 0.615789474
## 1504 0.284 0.716 zero Group1 314  702  438  76 0.805128205 0.615789474
## 294  0.282 0.718 zero Group1 314  700  440  76 0.805128205 0.614035088
## 1046 0.282 0.718 zero Group1 314  700  440  76 0.805128205 0.614035088
## 73   0.280 0.720 zero Group1 315  696  444  75 0.807692308 0.610526316
## 438  0.280 0.720  one Group1 315  696  444  75 0.807692308 0.610526316
## 930  0.280 0.720 zero Group1 315  696  444  75 0.807692308 0.610526316
## 1274 0.280 0.720 zero Group1 315  696  444  75 0.807692308 0.610526316
## 1352 0.280 0.720 zero Group1 315  696  444  75 0.807692308 0.610526316
## 548  0.278 0.722 zero Group1 315  694  446  75 0.807692308 0.608771930
## 1112 0.278 0.722 zero Group1 315  694  446  75 0.807692308 0.608771930
## 7    0.276 0.724 zero Group1 317  692  448  73 0.812820513 0.607017544
## 335  0.276 0.724  one Group1 317  692  448  73 0.812820513 0.607017544
## 817  0.276 0.724 zero Group1 317  692  448  73 0.812820513 0.607017544
## 1141 0.276 0.724  one Group1 317  692  448  73 0.812820513 0.607017544
## 525  0.274 0.726 zero Group1 318  690  450  72 0.815384615 0.605263158
## 1410 0.274 0.726  one Group1 318  690  450  72 0.815384615 0.605263158
## 1507 0.274 0.726 zero Group1 318  690  450  72 0.815384615 0.605263158
## 1292 0.272 0.728 zero Group1 318  689  451  72 0.815384615 0.604385965
## 128  0.270 0.730 zero Group1 318  688  452  72 0.815384615 0.603508772
## 323  0.268 0.732  one Group1 320  686  454  70 0.820512821 0.601754386
## 359  0.268 0.732  one Group1 320  686  454  70 0.820512821 0.601754386
## 514  0.268 0.732 zero Group1 320  686  454  70 0.820512821 0.601754386
## 864  0.268 0.732 zero Group1 320  686  454  70 0.820512821 0.601754386
## 99   0.266 0.734  one Group1 323  684  456  67 0.828205128 0.600000000
## 605  0.266 0.734  one Group1 323  684  456  67 0.828205128 0.600000000
## 905  0.266 0.734  one Group1 323  684  456  67 0.828205128 0.600000000
## 1246 0.266 0.734 zero Group1 323  684  456  67 0.828205128 0.600000000
## 1260 0.266 0.734 zero Group1 323  684  456  67 0.828205128 0.600000000
## 367  0.264 0.736  one Group1 326  682  458  64 0.835897436 0.598245614
## 416  0.264 0.736  one Group1 326  682  458  64 0.835897436 0.598245614
## 440  0.264 0.736  one Group1 326  682  458  64 0.835897436 0.598245614
## 663  0.264 0.736 zero Group1 326  682  458  64 0.835897436 0.598245614
## 1106 0.264 0.736 zero Group1 326  682  458  64 0.835897436 0.598245614
## 14   0.262 0.738 zero Group1 327  678  462  63 0.838461538 0.594736842
## 131  0.262 0.738 zero Group1 327  678  462  63 0.838461538 0.594736842
## 611  0.262 0.738  one Group1 327  678  462  63 0.838461538 0.594736842
## 1034 0.262 0.738 zero Group1 327  678  462  63 0.838461538 0.594736842
## 1390 0.262 0.738 zero Group1 327  678  462  63 0.838461538 0.594736842
## 255  0.260 0.740 zero Group1 328  675  465  62 0.841025641 0.592105263
## 550  0.260 0.740 zero Group1 328  675  465  62 0.841025641 0.592105263
## 1086 0.260 0.740 zero Group1 328  675  465  62 0.841025641 0.592105263
## 1163 0.260 0.740  one Group1 328  675  465  62 0.841025641 0.592105263
## 154  0.258 0.742 zero Group1 329  672  468  61 0.843589744 0.589473684
## 609  0.258 0.742  one Group1 329  672  468  61 0.843589744 0.589473684
## 1013 0.258 0.742 zero Group1 329  672  468  61 0.843589744 0.589473684
## 1431 0.258 0.742 zero Group1 329  672  468  61 0.843589744 0.589473684
## 227  0.256 0.744 zero Group1 331  670  470  59 0.848717949 0.587719298
## 516  0.256 0.744  one Group1 331  670  470  59 0.848717949 0.587719298
## 740  0.256 0.744 zero Group1 331  670  470  59 0.848717949 0.587719298
## 895  0.256 0.744  one Group1 331  670  470  59 0.848717949 0.587719298
## 223  0.254 0.746 zero Group1 332  667  473  58 0.851282051 0.585087719
## 1022 0.254 0.746 zero Group1 332  667  473  58 0.851282051 0.585087719
## 1153 0.254 0.746 zero Group1 332  667  473  58 0.851282051 0.585087719
## 1344 0.254 0.746  one Group1 332  667  473  58 0.851282051 0.585087719
## 43   0.252 0.748 zero Group1 332  661  479  58 0.851282051 0.579824561
## 424  0.252 0.748 zero Group1 332  661  479  58 0.851282051 0.579824561
## 484  0.252 0.748 zero Group1 332  661  479  58 0.851282051 0.579824561
## 491  0.252 0.748 zero Group1 332  661  479  58 0.851282051 0.579824561
## 1261 0.252 0.748 zero Group1 332  661  479  58 0.851282051 0.579824561
## 1321 0.252 0.748 zero Group1 332  661  479  58 0.851282051 0.579824561
## 182  0.250 0.750 zero Group1 334  656  484  56 0.856410256 0.575438596
## 206  0.250 0.750 zero Group1 334  656  484  56 0.856410256 0.575438596
## 568  0.250 0.750 zero Group1 334  656  484  56 0.856410256 0.575438596
## 590  0.250 0.750 zero Group1 334  656  484  56 0.856410256 0.575438596
## 1382 0.250 0.750  one Group1 334  656  484  56 0.856410256 0.575438596
## 1489 0.250 0.750  one Group1 334  656  484  56 0.856410256 0.575438596
## 1521 0.250 0.750 zero Group1 334  656  484  56 0.856410256 0.575438596
## 534  0.248 0.752 zero Group1 334  654  486  56 0.856410256 0.573684211
## 1434 0.248 0.752 zero Group1 334  654  486  56 0.856410256 0.573684211
## 126  0.246 0.754 zero Group1 335  649  491  55 0.858974359 0.569298246
## 137  0.246 0.754 zero Group1 335  649  491  55 0.858974359 0.569298246
## 497  0.246 0.754 zero Group1 335  649  491  55 0.858974359 0.569298246
## 886  0.246 0.754 zero Group1 335  649  491  55 0.858974359 0.569298246
## 1166 0.246 0.754  one Group1 335  649  491  55 0.858974359 0.569298246
## 1215 0.246 0.754 zero Group1 335  649  491  55 0.858974359 0.569298246
## 741  0.244 0.756 zero Group1 335  646  494  55 0.858974359 0.566666667
## 1175 0.244 0.756 zero Group1 335  646  494  55 0.858974359 0.566666667
## 1348 0.244 0.756 zero Group1 335  646  494  55 0.858974359 0.566666667
## 143  0.242 0.758 zero Group1 335  642  498  55 0.858974359 0.563157895
## 691  0.242 0.758 zero Group1 335  642  498  55 0.858974359 0.563157895
## 1018 0.242 0.758 zero Group1 335  642  498  55 0.858974359 0.563157895
## 1318 0.242 0.758 zero Group1 335  642  498  55 0.858974359 0.563157895
## 64   0.240 0.760 zero Group1 336  636  504  54 0.861538462 0.557894737
## 69   0.240 0.760 zero Group1 336  636  504  54 0.861538462 0.557894737
## 466  0.240 0.760 zero Group1 336  636  504  54 0.861538462 0.557894737
## 589  0.240 0.760 zero Group1 336  636  504  54 0.861538462 0.557894737
## 873  0.240 0.760 zero Group1 336  636  504  54 0.861538462 0.557894737
## 1069 0.240 0.760  one Group1 336  636  504  54 0.861538462 0.557894737
## 1146 0.240 0.760 zero Group1 336  636  504  54 0.861538462 0.557894737
## 651  0.238 0.762  one Group1 338  634  506  52 0.866666667 0.556140351
## 857  0.238 0.762 zero Group1 338  634  506  52 0.866666667 0.556140351
## 1000 0.238 0.762 zero Group1 338  634  506  52 0.866666667 0.556140351
## 1491 0.238 0.762  one Group1 338  634  506  52 0.866666667 0.556140351
## 139  0.236 0.764 zero Group1 339  632  508  51 0.869230769 0.554385965
## 654  0.236 0.764  one Group1 339  632  508  51 0.869230769 0.554385965
## 841  0.236 0.764 zero Group1 339  632  508  51 0.869230769 0.554385965
## 160  0.234 0.766 zero Group1 339  626  514  51 0.869230769 0.549122807
## 290  0.234 0.766 zero Group1 339  626  514  51 0.869230769 0.549122807
## 521  0.234 0.766 zero Group1 339  626  514  51 0.869230769 0.549122807
## 892  0.234 0.766 zero Group1 339  626  514  51 0.869230769 0.549122807
## 1226 0.234 0.766 zero Group1 339  626  514  51 0.869230769 0.549122807
## 1364 0.234 0.766 zero Group1 339  626  514  51 0.869230769 0.549122807
## 212  0.232 0.768 zero Group1 340  623  517  50 0.871794872 0.546491228
## 266  0.232 0.768  one Group1 340  623  517  50 0.871794872 0.546491228
## 405  0.232 0.768 zero Group1 340  623  517  50 0.871794872 0.546491228
## 765  0.232 0.768 zero Group1 340  623  517  50 0.871794872 0.546491228
## 317  0.230 0.770 zero Group1 340  619  521  50 0.871794872 0.542982456
## 1423 0.230 0.770 zero Group1 340  619  521  50 0.871794872 0.542982456
## 1432 0.230 0.770 zero Group1 340  619  521  50 0.871794872 0.542982456
## 1520 0.230 0.770 zero Group1 340  619  521  50 0.871794872 0.542982456
## 65   0.228 0.772 zero Group1 341  612  528  49 0.874358974 0.536842105
## 67   0.228 0.772 zero Group1 341  612  528  49 0.874358974 0.536842105
## 475  0.228 0.772 zero Group1 341  612  528  49 0.874358974 0.536842105
## 494  0.228 0.772 zero Group1 341  612  528  49 0.874358974 0.536842105
## 507  0.228 0.772  one Group1 341  612  528  49 0.874358974 0.536842105
## 927  0.228 0.772 zero Group1 341  612  528  49 0.874358974 0.536842105
## 947  0.228 0.772 zero Group1 341  612  528  49 0.874358974 0.536842105
## 1117 0.228 0.772 zero Group1 341  612  528  49 0.874358974 0.536842105
## 300  0.226 0.774 zero Group1 342  610  530  48 0.876923077 0.535087719
## 509  0.226 0.774  one Group1 342  610  530  48 0.876923077 0.535087719
## 642  0.226 0.774 zero Group1 342  610  530  48 0.876923077 0.535087719
## 508  0.224 0.776  one Group1 344  606  534  46 0.882051282 0.531578947
## 855  0.224 0.776 zero Group1 344  606  534  46 0.882051282 0.531578947
## 1109 0.224 0.776 zero Group1 344  606  534  46 0.882051282 0.531578947
## 1201 0.224 0.776 zero Group1 344  606  534  46 0.882051282 0.531578947
## 1234 0.224 0.776  one Group1 344  606  534  46 0.882051282 0.531578947
## 1424 0.224 0.776 zero Group1 344  606  534  46 0.882051282 0.531578947
## 435  0.222 0.778  one Group1 345  605  535  45 0.884615385 0.530701754
## 810  0.222 0.778 zero Group1 345  605  535  45 0.884615385 0.530701754
## 487  0.220 0.780 zero Group1 345  602  538  45 0.884615385 0.528070175
## 1374 0.220 0.780 zero Group1 345  602  538  45 0.884615385 0.528070175
## 1518 0.220 0.780 zero Group1 345  602  538  45 0.884615385 0.528070175
## 21   0.218 0.782 zero Group1 345  595  545  45 0.884615385 0.521929825
## 144  0.218 0.782 zero Group1 345  595  545  45 0.884615385 0.521929825
## 193  0.218 0.782 zero Group1 345  595  545  45 0.884615385 0.521929825
## 320  0.218 0.782 zero Group1 345  595  545  45 0.884615385 0.521929825
## 473  0.218 0.782 zero Group1 345  595  545  45 0.884615385 0.521929825
## 1354 0.218 0.782 zero Group1 345  595  545  45 0.884615385 0.521929825
## 1456 0.218 0.782 zero Group1 345  595  545  45 0.884615385 0.521929825
## 74   0.216 0.784 zero Group1 346  588  552  44 0.887179487 0.515789474
## 284  0.216 0.784 zero Group1 346  588  552  44 0.887179487 0.515789474
## 527  0.216 0.784 zero Group1 346  588  552  44 0.887179487 0.515789474
## 620  0.216 0.784 zero Group1 346  588  552  44 0.887179487 0.515789474
## 1078 0.216 0.784 zero Group1 346  588  552  44 0.887179487 0.515789474
## 1142 0.216 0.784  one Group1 346  588  552  44 0.887179487 0.515789474
## 1328 0.216 0.784 zero Group1 346  588  552  44 0.887179487 0.515789474
## 1363 0.216 0.784 zero Group1 346  588  552  44 0.887179487 0.515789474
## 242  0.214 0.786 zero Group1 346  586  554  44 0.887179487 0.514035088
## 1294 0.214 0.786 zero Group1 346  586  554  44 0.887179487 0.514035088
## 485  0.212 0.788 zero Group1 346  580  560  44 0.887179487 0.508771930
## 1003 0.212 0.788 zero Group1 346  580  560  44 0.887179487 0.508771930
## 1019 0.212 0.788 zero Group1 346  580  560  44 0.887179487 0.508771930
## 1160 0.212 0.788 zero Group1 346  580  560  44 0.887179487 0.508771930
## 1444 0.212 0.788 zero Group1 346  580  560  44 0.887179487 0.508771930
## 1477 0.212 0.788 zero Group1 346  580  560  44 0.887179487 0.508771930
## 75   0.210 0.790 zero Group1 346  575  565  44 0.887179487 0.504385965
## 231  0.210 0.790 zero Group1 346  575  565  44 0.887179487 0.504385965
## 243  0.210 0.790 zero Group1 346  575  565  44 0.887179487 0.504385965
## 593  0.210 0.790 zero Group1 346  575  565  44 0.887179487 0.504385965
## 1204 0.210 0.790 zero Group1 346  575  565  44 0.887179487 0.504385965
## 878  0.208 0.792 zero Group1 346  573  567  44 0.887179487 0.502631579
## 1189 0.208 0.792 zero Group1 346  573  567  44 0.887179487 0.502631579
## 417  0.206 0.794  one Group1 349  572  568  41 0.894871795 0.501754386
## 638  0.206 0.794 zero Group1 349  572  568  41 0.894871795 0.501754386
## 1065 0.206 0.794  one Group1 349  572  568  41 0.894871795 0.501754386
## 1091 0.206 0.794  one Group1 349  572  568  41 0.894871795 0.501754386
## 482  0.204 0.796 zero Group1 350  569  571  40 0.897435897 0.499122807
## 708  0.204 0.796 zero Group1 350  569  571  40 0.897435897 0.499122807
## 748  0.204 0.796  one Group1 350  569  571  40 0.897435897 0.499122807
## 1258 0.204 0.796 zero Group1 350  569  571  40 0.897435897 0.499122807
## 361  0.202 0.798  one Group1 351  568  572  39 0.900000000 0.498245614
## 963  0.202 0.798 zero Group1 351  568  572  39 0.900000000 0.498245614
## 46   0.200 0.800 zero Group1 353  562  578  37 0.905128205 0.492982456
## 101  0.200 0.800 zero Group1 353  562  578  37 0.905128205 0.492982456
## 365  0.200 0.800  one Group1 353  562  578  37 0.905128205 0.492982456
## 386  0.200 0.800 zero Group1 353  562  578  37 0.905128205 0.492982456
## 397  0.200 0.800 zero Group1 353  562  578  37 0.905128205 0.492982456
## 1040 0.200 0.800 zero Group1 353  562  578  37 0.905128205 0.492982456
## 1269 0.200 0.800  one Group1 353  562  578  37 0.905128205 0.492982456
## 1359 0.200 0.800 zero Group1 353  562  578  37 0.905128205 0.492982456
## 519  0.198 0.802 zero Group1 358  559  581  32 0.917948718 0.490350877
## 820  0.198 0.802 zero Group1 358  559  581  32 0.917948718 0.490350877
## 824  0.198 0.802  one Group1 358  559  581  32 0.917948718 0.490350877
## 851  0.198 0.802  one Group1 358  559  581  32 0.917948718 0.490350877
## 1064 0.198 0.802  one Group1 358  559  581  32 0.917948718 0.490350877
## 1179 0.198 0.802 zero Group1 358  559  581  32 0.917948718 0.490350877
## 1267 0.198 0.802  one Group1 358  559  581  32 0.917948718 0.490350877
## 1307 0.198 0.802  one Group1 358  559  581  32 0.917948718 0.490350877
## 208  0.196 0.804 zero Group1 358  555  585  32 0.917948718 0.486842105
## 215  0.196 0.804 zero Group1 358  555  585  32 0.917948718 0.486842105
## 234  0.196 0.804 zero Group1 358  555  585  32 0.917948718 0.486842105
## 812  0.196 0.804 zero Group1 358  555  585  32 0.917948718 0.486842105
## 430  0.194 0.806 zero Group1 358  547  593  32 0.917948718 0.479824561
## 459  0.194 0.806 zero Group1 358  547  593  32 0.917948718 0.479824561
## 531  0.194 0.806 zero Group1 358  547  593  32 0.917948718 0.479824561
## 867  0.194 0.806 zero Group1 358  547  593  32 0.917948718 0.479824561
## 1134 0.194 0.806 zero Group1 358  547  593  32 0.917948718 0.479824561
## 1219 0.194 0.806 zero Group1 358  547  593  32 0.917948718 0.479824561
## 1357 0.194 0.806 zero Group1 358  547  593  32 0.917948718 0.479824561
## 1453 0.194 0.806 zero Group1 358  547  593  32 0.917948718 0.479824561
## 348  0.192 0.808 zero Group1 359  545  595  31 0.920512821 0.478070175
## 978  0.192 0.808  one Group1 359  545  595  31 0.920512821 0.478070175
## 1493 0.192 0.808 zero Group1 359  545  595  31 0.920512821 0.478070175
## 528  0.190 0.810 zero Group1 360  543  597  30 0.923076923 0.476315789
## 960  0.190 0.810 zero Group1 360  543  597  30 0.923076923 0.476315789
## 1237 0.190 0.810  one Group1 360  543  597  30 0.923076923 0.476315789
## 372  0.188 0.812 zero Group1 361  541  599  29 0.925641026 0.474561404
## 1051 0.188 0.812  one Group1 361  541  599  29 0.925641026 0.474561404
## 1470 0.188 0.812 zero Group1 361  541  599  29 0.925641026 0.474561404
## 158  0.186 0.814 zero Group1 361  534  606  29 0.925641026 0.468421053
## 675  0.186 0.814 zero Group1 361  534  606  29 0.925641026 0.468421053
## 786  0.186 0.814 zero Group1 361  534  606  29 0.925641026 0.468421053
## 787  0.186 0.814 zero Group1 361  534  606  29 0.925641026 0.468421053
## 937  0.186 0.814 zero Group1 361  534  606  29 0.925641026 0.468421053
## 1277 0.186 0.814 zero Group1 361  534  606  29 0.925641026 0.468421053
## 1319 0.186 0.814 zero Group1 361  534  606  29 0.925641026 0.468421053
## 669  0.184 0.816 zero Group1 362  529  611  28 0.928205128 0.464035088
## 964  0.184 0.816 zero Group1 362  529  611  28 0.928205128 0.464035088
## 974  0.184 0.816 zero Group1 362  529  611  28 0.928205128 0.464035088
## 997  0.184 0.816  one Group1 362  529  611  28 0.928205128 0.464035088
## 1097 0.184 0.816 zero Group1 362  529  611  28 0.928205128 0.464035088
## 1457 0.184 0.816 zero Group1 362  529  611  28 0.928205128 0.464035088
## 12   0.182 0.818 zero Group1 362  520  620  28 0.928205128 0.456140351
## 60   0.182 0.818 zero Group1 362  520  620  28 0.928205128 0.456140351
## 202  0.182 0.818 zero Group1 362  520  620  28 0.928205128 0.456140351
## 214  0.182 0.818 zero Group1 362  520  620  28 0.928205128 0.456140351
## 471  0.182 0.818 zero Group1 362  520  620  28 0.928205128 0.456140351
## 522  0.182 0.818 zero Group1 362  520  620  28 0.928205128 0.456140351
## 799  0.182 0.818 zero Group1 362  520  620  28 0.928205128 0.456140351
## 928  0.182 0.818 zero Group1 362  520  620  28 0.928205128 0.456140351
## 1186 0.182 0.818 zero Group1 362  520  620  28 0.928205128 0.456140351
## 66   0.180 0.820 zero Group1 362  518  622  28 0.928205128 0.454385965
## 1012 0.180 0.820 zero Group1 362  518  622  28 0.928205128 0.454385965
## 597  0.178 0.822 zero Group1 362  515  625  28 0.928205128 0.451754386
## 738  0.178 0.822 zero Group1 362  515  625  28 0.928205128 0.451754386
## 972  0.178 0.822 zero Group1 362  515  625  28 0.928205128 0.451754386
## 381  0.176 0.824 zero Group1 362  510  630  28 0.928205128 0.447368421
## 490  0.176 0.824 zero Group1 362  510  630  28 0.928205128 0.447368421
## 961  0.176 0.824 zero Group1 362  510  630  28 0.928205128 0.447368421
## 1182 0.176 0.824 zero Group1 362  510  630  28 0.928205128 0.447368421
## 1501 0.176 0.824 zero Group1 362  510  630  28 0.928205128 0.447368421
## 444  0.174 0.826 zero Group1 363  505  635  27 0.930769231 0.442982456
## 545  0.174 0.826 zero Group1 363  505  635  27 0.930769231 0.442982456
## 658  0.174 0.826  one Group1 363  505  635  27 0.930769231 0.442982456
## 695  0.174 0.826 zero Group1 363  505  635  27 0.930769231 0.442982456
## 745  0.174 0.826 zero Group1 363  505  635  27 0.930769231 0.442982456
## 876  0.174 0.826 zero Group1 363  505  635  27 0.930769231 0.442982456
## 237  0.172 0.828 zero Group1 364  498  642  26 0.933333333 0.436842105
## 311  0.172 0.828 zero Group1 364  498  642  26 0.933333333 0.436842105
## 422  0.172 0.828 zero Group1 364  498  642  26 0.933333333 0.436842105
## 456  0.172 0.828 zero Group1 364  498  642  26 0.933333333 0.436842105
## 1045 0.172 0.828 zero Group1 364  498  642  26 0.933333333 0.436842105
## 1177 0.172 0.828 zero Group1 364  498  642  26 0.933333333 0.436842105
## 1310 0.172 0.828  one Group1 364  498  642  26 0.933333333 0.436842105
## 1511 0.172 0.828 zero Group1 364  498  642  26 0.933333333 0.436842105
## 469  0.170 0.830  one Group1 365  498  642  25 0.935897436 0.436842105
## 349  0.168 0.832 zero Group1 365  491  649  25 0.935897436 0.430701754
## 479  0.168 0.832 zero Group1 365  491  649  25 0.935897436 0.430701754
## 637  0.168 0.832 zero Group1 365  491  649  25 0.935897436 0.430701754
## 935  0.168 0.832 zero Group1 365  491  649  25 0.935897436 0.430701754
## 1074 0.168 0.832 zero Group1 365  491  649  25 0.935897436 0.430701754
## 1116 0.168 0.832 zero Group1 365  491  649  25 0.935897436 0.430701754
## 1276 0.168 0.832 zero Group1 365  491  649  25 0.935897436 0.430701754
## 85   0.166 0.834 zero Group1 366  487  653  24 0.938461538 0.427192982
## 329  0.166 0.834 zero Group1 366  487  653  24 0.938461538 0.427192982
## 1196 0.166 0.834  one Group1 366  487  653  24 0.938461538 0.427192982
## 1284 0.166 0.834 zero Group1 366  487  653  24 0.938461538 0.427192982
## 1290 0.166 0.834 zero Group1 366  487  653  24 0.938461538 0.427192982
## 396  0.164 0.836 zero Group1 366  484  656  24 0.938461538 0.424561404
## 426  0.164 0.836 zero Group1 366  484  656  24 0.938461538 0.424561404
## 563  0.164 0.836 zero Group1 366  484  656  24 0.938461538 0.424561404
## 142  0.162 0.838 zero Group1 367  479  661  23 0.941025641 0.420175439
## 644  0.162 0.838 zero Group1 367  479  661  23 0.941025641 0.420175439
## 659  0.162 0.838  one Group1 367  479  661  23 0.941025641 0.420175439
## 690  0.162 0.838 zero Group1 367  479  661  23 0.941025641 0.420175439
## 692  0.162 0.838 zero Group1 367  479  661  23 0.941025641 0.420175439
## 791  0.162 0.838 zero Group1 367  479  661  23 0.941025641 0.420175439
## 296  0.160 0.840 zero Group1 367  477  663  23 0.941025641 0.418421053
## 305  0.160 0.840 zero Group1 367  477  663  23 0.941025641 0.418421053
## 58   0.158 0.842 zero Group1 368  472  668  22 0.943589744 0.414035088
## 811  0.158 0.842 zero Group1 368  472  668  22 0.943589744 0.414035088
## 1079 0.158 0.842 zero Group1 368  472  668  22 0.943589744 0.414035088
## 1083 0.158 0.842 zero Group1 368  472  668  22 0.943589744 0.414035088
## 1271 0.158 0.842  one Group1 368  472  668  22 0.943589744 0.414035088
## 1377 0.158 0.842 zero Group1 368  472  668  22 0.943589744 0.414035088
## 532  0.156 0.844 zero Group1 368  470  670  22 0.943589744 0.412280702
## 631  0.156 0.844 zero Group1 368  470  670  22 0.943589744 0.412280702
## 115  0.154 0.846  one Group1 370  466  674  20 0.948717949 0.408771930
## 177  0.154 0.846  one Group1 370  466  674  20 0.948717949 0.408771930
## 289  0.154 0.846 zero Group1 370  466  674  20 0.948717949 0.408771930
## 303  0.154 0.846 zero Group1 370  466  674  20 0.948717949 0.408771930
## 1115 0.154 0.846 zero Group1 370  466  674  20 0.948717949 0.408771930
## 1472 0.154 0.846 zero Group1 370  466  674  20 0.948717949 0.408771930
## 129  0.152 0.848 zero Group1 370  463  677  20 0.948717949 0.406140351
## 251  0.152 0.848 zero Group1 370  463  677  20 0.948717949 0.406140351
## 1253 0.152 0.848 zero Group1 370  463  677  20 0.948717949 0.406140351
## 104  0.150 0.850 zero Group1 370  457  683  20 0.948717949 0.400877193
## 151  0.150 0.850 zero Group1 370  457  683  20 0.948717949 0.400877193
## 309  0.150 0.850 zero Group1 370  457  683  20 0.948717949 0.400877193
## 1127 0.150 0.850 zero Group1 370  457  683  20 0.948717949 0.400877193
## 1191 0.150 0.850 zero Group1 370  457  683  20 0.948717949 0.400877193
## 1522 0.150 0.850 zero Group1 370  457  683  20 0.948717949 0.400877193
## 210  0.148 0.852 zero Group1 370  453  687  20 0.948717949 0.397368421
## 1016 0.148 0.852 zero Group1 370  453  687  20 0.948717949 0.397368421
## 1030 0.148 0.852 zero Group1 370  453  687  20 0.948717949 0.397368421
## 1455 0.148 0.852 zero Group1 370  453  687  20 0.948717949 0.397368421
## 330  0.146 0.854 zero Group1 370  449  691  20 0.948717949 0.393859649
## 987  0.146 0.854 zero Group1 370  449  691  20 0.948717949 0.393859649
## 1365 0.146 0.854 zero Group1 370  449  691  20 0.948717949 0.393859649
## 1459 0.146 0.854 zero Group1 370  449  691  20 0.948717949 0.393859649
## 37   0.144 0.856 zero Group1 370  443  697  20 0.948717949 0.388596491
## 235  0.144 0.856 zero Group1 370  443  697  20 0.948717949 0.388596491
## 702  0.144 0.856 zero Group1 370  443  697  20 0.948717949 0.388596491
## 1113 0.144 0.856 zero Group1 370  443  697  20 0.948717949 0.388596491
## 1325 0.144 0.856 zero Group1 370  443  697  20 0.948717949 0.388596491
## 1451 0.144 0.856 zero Group1 370  443  697  20 0.948717949 0.388596491
## 247  0.142 0.858 zero Group1 370  434  706  20 0.948717949 0.380701754
## 375  0.142 0.858 zero Group1 370  434  706  20 0.948717949 0.380701754
## 452  0.142 0.858 zero Group1 370  434  706  20 0.948717949 0.380701754
## 758  0.142 0.858 zero Group1 370  434  706  20 0.948717949 0.380701754
## 954  0.142 0.858 zero Group1 370  434  706  20 0.948717949 0.380701754
## 1011 0.142 0.858 zero Group1 370  434  706  20 0.948717949 0.380701754
## 1264 0.142 0.858 zero Group1 370  434  706  20 0.948717949 0.380701754
## 1454 0.142 0.858 zero Group1 370  434  706  20 0.948717949 0.380701754
## 1509 0.142 0.858 zero Group1 370  434  706  20 0.948717949 0.380701754
## 72   0.140 0.860 zero Group1 370  427  713  20 0.948717949 0.374561404
## 250  0.140 0.860 zero Group1 370  427  713  20 0.948717949 0.374561404
## 322  0.140 0.860 zero Group1 370  427  713  20 0.948717949 0.374561404
## 425  0.140 0.860 zero Group1 370  427  713  20 0.948717949 0.374561404
## 1002 0.140 0.860 zero Group1 370  427  713  20 0.948717949 0.374561404
## 1266 0.140 0.860 zero Group1 370  427  713  20 0.948717949 0.374561404
## 1438 0.140 0.860 zero Group1 370  427  713  20 0.948717949 0.374561404
## 106  0.138 0.862 zero Group1 370  420  720  20 0.948717949 0.368421053
## 185  0.138 0.862 zero Group1 370  420  720  20 0.948717949 0.368421053
## 370  0.138 0.862 zero Group1 370  420  720  20 0.948717949 0.368421053
## 703  0.138 0.862 zero Group1 370  420  720  20 0.948717949 0.368421053
## 710  0.138 0.862 zero Group1 370  420  720  20 0.948717949 0.368421053
## 942  0.138 0.862 zero Group1 370  420  720  20 0.948717949 0.368421053
## 1301 0.138 0.862 zero Group1 370  420  720  20 0.948717949 0.368421053
## 51   0.136 0.864 zero Group1 371  417  723  19 0.951282051 0.365789474
## 1038 0.136 0.864 zero Group1 371  417  723  19 0.951282051 0.365789474
## 1379 0.136 0.864 zero Group1 371  417  723  19 0.951282051 0.365789474
## 1418 0.136 0.864  one Group1 371  417  723  19 0.951282051 0.365789474
## 318  0.134 0.866 zero Group1 372  412  728  18 0.953846154 0.361403509
## 888  0.134 0.866 zero Group1 372  412  728  18 0.953846154 0.361403509
## 966  0.134 0.866 zero Group1 372  412  728  18 0.953846154 0.361403509
## 1031 0.134 0.866 zero Group1 372  412  728  18 0.953846154 0.361403509
## 1167 0.134 0.866  one Group1 372  412  728  18 0.953846154 0.361403509
## 1433 0.134 0.866 zero Group1 372  412  728  18 0.953846154 0.361403509
## 240  0.132 0.868 zero Group1 372  405  735  18 0.953846154 0.355263158
## 488  0.132 0.868 zero Group1 372  405  735  18 0.953846154 0.355263158
## 770  0.132 0.868 zero Group1 372  405  735  18 0.953846154 0.355263158
## 909  0.132 0.868 zero Group1 372  405  735  18 0.953846154 0.355263158
## 959  0.132 0.868 zero Group1 372  405  735  18 0.953846154 0.355263158
## 1376 0.132 0.868 zero Group1 372  405  735  18 0.953846154 0.355263158
## 1502 0.132 0.868 zero Group1 372  405  735  18 0.953846154 0.355263158
## 26   0.130 0.870 zero Group1 372  401  739  18 0.953846154 0.351754386
## 315  0.130 0.870 zero Group1 372  401  739  18 0.953846154 0.351754386
## 869  0.130 0.870 zero Group1 372  401  739  18 0.953846154 0.351754386
## 967  0.130 0.870 zero Group1 372  401  739  18 0.953846154 0.351754386
## 570  0.128 0.872 zero Group1 372  400  740  18 0.953846154 0.350877193
## 378  0.126 0.874 zero Group1 372  395  745  18 0.953846154 0.346491228
## 467  0.126 0.874 zero Group1 372  395  745  18 0.953846154 0.346491228
## 1015 0.126 0.874 zero Group1 372  395  745  18 0.953846154 0.346491228
## 1254 0.126 0.874 zero Group1 372  395  745  18 0.953846154 0.346491228
## 1476 0.126 0.874 zero Group1 372  395  745  18 0.953846154 0.346491228
## 310  0.124 0.876 zero Group1 372  392  748  18 0.953846154 0.343859649
## 600  0.124 0.876 zero Group1 372  392  748  18 0.953846154 0.343859649
## 944  0.124 0.876 zero Group1 372  392  748  18 0.953846154 0.343859649
## 477  0.122 0.878 zero Group1 372  386  754  18 0.953846154 0.338596491
## 560  0.122 0.878 zero Group1 372  386  754  18 0.953846154 0.338596491
## 672  0.122 0.878 zero Group1 372  386  754  18 0.953846154 0.338596491
## 1111 0.122 0.878 zero Group1 372  386  754  18 0.953846154 0.338596491
## 1442 0.122 0.878 zero Group1 372  386  754  18 0.953846154 0.338596491
## 1463 0.122 0.878 zero Group1 372  386  754  18 0.953846154 0.338596491
## 547  0.120 0.880 zero Group1 372  380  760  18 0.953846154 0.333333333
## 1025 0.120 0.880 zero Group1 372  380  760  18 0.953846154 0.333333333
## 1110 0.120 0.880 zero Group1 372  380  760  18 0.953846154 0.333333333
## 1154 0.120 0.880 zero Group1 372  380  760  18 0.953846154 0.333333333
## 1515 0.120 0.880 zero Group1 372  380  760  18 0.953846154 0.333333333
## 1519 0.120 0.880 zero Group1 372  380  760  18 0.953846154 0.333333333
## 28   0.118 0.882 zero Group1 374  377  763  16 0.958974359 0.330701754
## 565  0.118 0.882 zero Group1 374  377  763  16 0.958974359 0.330701754
## 941  0.118 0.882 zero Group1 374  377  763  16 0.958974359 0.330701754
## 1340 0.118 0.882  one Group1 374  377  763  16 0.958974359 0.330701754
## 1385 0.118 0.882  one Group1 374  377  763  16 0.958974359 0.330701754
## 312  0.116 0.884 zero Group1 375  371  769  15 0.961538462 0.325438596
## 870  0.116 0.884 zero Group1 375  371  769  15 0.961538462 0.325438596
## 916  0.116 0.884  one Group1 375  371  769  15 0.961538462 0.325438596
## 950  0.116 0.884 zero Group1 375  371  769  15 0.961538462 0.325438596
## 1059 0.116 0.884 zero Group1 375  371  769  15 0.961538462 0.325438596
## 1229 0.116 0.884 zero Group1 375  371  769  15 0.961538462 0.325438596
## 1355 0.116 0.884 zero Group1 375  371  769  15 0.961538462 0.325438596
## 188  0.114 0.886  one Group1 377  367  773  13 0.966666667 0.321929825
## 236  0.114 0.886 zero Group1 377  367  773  13 0.966666667 0.321929825
## 472  0.114 0.886 zero Group1 377  367  773  13 0.966666667 0.321929825
## 759  0.114 0.886  one Group1 377  367  773  13 0.966666667 0.321929825
## 1230 0.114 0.886 zero Group1 377  367  773  13 0.966666667 0.321929825
## 1478 0.114 0.886 zero Group1 377  367  773  13 0.966666667 0.321929825
## 47   0.112 0.888 zero Group1 378  363  777  12 0.969230769 0.318421053
## 353  0.112 0.888 zero Group1 378  363  777  12 0.969230769 0.318421053
## 619  0.112 0.888 zero Group1 378  363  777  12 0.969230769 0.318421053
## 1062 0.112 0.888  one Group1 378  363  777  12 0.969230769 0.318421053
## 1449 0.112 0.888 zero Group1 378  363  777  12 0.969230769 0.318421053
## 803  0.110 0.890 zero Group1 378  359  781  12 0.969230769 0.314912281
## 1010 0.110 0.890 zero Group1 378  359  781  12 0.969230769 0.314912281
## 1104 0.110 0.890 zero Group1 378  359  781  12 0.969230769 0.314912281
## 1170 0.110 0.890 zero Group1 378  359  781  12 0.969230769 0.314912281
## 1446 0.108 0.892 zero Group1 378  358  782  12 0.969230769 0.314035088
## 15   0.106 0.894 zero Group1 380  349  791  10 0.974358974 0.306140351
## 114  0.106 0.894 zero Group1 380  349  791  10 0.974358974 0.306140351
## 183  0.106 0.894 zero Group1 380  349  791  10 0.974358974 0.306140351
## 192  0.106 0.894 zero Group1 380  349  791  10 0.974358974 0.306140351
## 248  0.106 0.894 zero Group1 380  349  791  10 0.974358974 0.306140351
## 344  0.106 0.894  one Group1 380  349  791  10 0.974358974 0.306140351
## 510  0.106 0.894  one Group1 380  349  791  10 0.974358974 0.306140351
## 567  0.106 0.894 zero Group1 380  349  791  10 0.974358974 0.306140351
## 571  0.106 0.894 zero Group1 380  349  791  10 0.974358974 0.306140351
## 1156 0.106 0.894 zero Group1 380  349  791  10 0.974358974 0.306140351
## 1497 0.106 0.894 zero Group1 380  349  791  10 0.974358974 0.306140351
## 276  0.104 0.896 zero Group1 380  343  797  10 0.974358974 0.300877193
## 406  0.104 0.896 zero Group1 380  343  797  10 0.974358974 0.300877193
## 442  0.104 0.896 zero Group1 380  343  797  10 0.974358974 0.300877193
## 861  0.104 0.896 zero Group1 380  343  797  10 0.974358974 0.300877193
## 933  0.104 0.896 zero Group1 380  343  797  10 0.974358974 0.300877193
## 1085 0.104 0.896 zero Group1 380  343  797  10 0.974358974 0.300877193
## 217  0.102 0.898 zero Group1 380  337  803  10 0.974358974 0.295614035
## 286  0.102 0.898 zero Group1 380  337  803  10 0.974358974 0.295614035
## 476  0.102 0.898 zero Group1 380  337  803  10 0.974358974 0.295614035
## 643  0.102 0.898 zero Group1 380  337  803  10 0.974358974 0.295614035
## 717  0.102 0.898 zero Group1 380  337  803  10 0.974358974 0.295614035
## 910  0.102 0.898 zero Group1 380  337  803  10 0.974358974 0.295614035
## 90   0.100 0.900  one Group1 381  334  806   9 0.976923077 0.292982456
## 238  0.100 0.900 zero Group1 381  334  806   9 0.976923077 0.292982456
## 288  0.100 0.900 zero Group1 381  334  806   9 0.976923077 0.292982456
## 1288 0.100 0.900 zero Group1 381  334  806   9 0.976923077 0.292982456
## 5    0.098 0.902 zero Group1 381  328  812   9 0.976923077 0.287719298
## 356  0.098 0.902 zero Group1 381  328  812   9 0.976923077 0.287719298
## 379  0.098 0.902 zero Group1 381  328  812   9 0.976923077 0.287719298
## 407  0.098 0.902 zero Group1 381  328  812   9 0.976923077 0.287719298
## 715  0.098 0.902 zero Group1 381  328  812   9 0.976923077 0.287719298
## 1014 0.098 0.902 zero Group1 381  328  812   9 0.976923077 0.287719298
## 352  0.096 0.904 zero Group1 382  322  818   8 0.979487179 0.282456140
## 577  0.096 0.904  one Group1 382  322  818   8 0.979487179 0.282456140
## 821  0.096 0.904 zero Group1 382  322  818   8 0.979487179 0.282456140
## 1101 0.096 0.904 zero Group1 382  322  818   8 0.979487179 0.282456140
## 1188 0.096 0.904 zero Group1 382  322  818   8 0.979487179 0.282456140
## 1228 0.096 0.904 zero Group1 382  322  818   8 0.979487179 0.282456140
## 1530 0.096 0.904 zero Group1 382  322  818   8 0.979487179 0.282456140
## 83   0.094 0.906 zero Group1 382  319  821   8 0.979487179 0.279824561
## 594  0.094 0.906 zero Group1 382  319  821   8 0.979487179 0.279824561
## 814  0.094 0.906 zero Group1 382  319  821   8 0.979487179 0.279824561
## 432  0.092 0.908 zero Group1 382  318  822   8 0.979487179 0.278947368
## 285  0.090 0.910 zero Group1 383  311  829   7 0.982051282 0.272807018
## 633  0.090 0.910 zero Group1 383  311  829   7 0.982051282 0.272807018
## 673  0.090 0.910 zero Group1 383  311  829   7 0.982051282 0.272807018
## 769  0.090 0.910 zero Group1 383  311  829   7 0.982051282 0.272807018
## 854  0.090 0.910  one Group1 383  311  829   7 0.982051282 0.272807018
## 1114 0.090 0.910 zero Group1 383  311  829   7 0.982051282 0.272807018
## 1212 0.090 0.910 zero Group1 383  311  829   7 0.982051282 0.272807018
## 1380 0.090 0.910 zero Group1 383  311  829   7 0.982051282 0.272807018
## 383  0.088 0.912 zero Group1 383  304  836   7 0.982051282 0.266666667
## 939  0.088 0.912 zero Group1 383  304  836   7 0.982051282 0.266666667
## 1206 0.088 0.912 zero Group1 383  304  836   7 0.982051282 0.266666667
## 1225 0.088 0.912 zero Group1 383  304  836   7 0.982051282 0.266666667
## 1327 0.088 0.912 zero Group1 383  304  836   7 0.982051282 0.266666667
## 1525 0.088 0.912 zero Group1 383  304  836   7 0.982051282 0.266666667
## 1527 0.088 0.912 zero Group1 383  304  836   7 0.982051282 0.266666667
## 1202 0.086 0.914 zero Group1 383  302  838   7 0.982051282 0.264912281
## 1222 0.086 0.914 zero Group1 383  302  838   7 0.982051282 0.264912281
## 77   0.084 0.916 zero Group1 383  292  848   7 0.982051282 0.256140351
## 127  0.084 0.916 zero Group1 383  292  848   7 0.982051282 0.256140351
## 389  0.084 0.916 zero Group1 383  292  848   7 0.982051282 0.256140351
## 450  0.084 0.916 zero Group1 383  292  848   7 0.982051282 0.256140351
## 818  0.084 0.916 zero Group1 383  292  848   7 0.982051282 0.256140351
## 975  0.084 0.916 zero Group1 383  292  848   7 0.982051282 0.256140351
## 1029 0.084 0.916 zero Group1 383  292  848   7 0.982051282 0.256140351
## 1131 0.084 0.916 zero Group1 383  292  848   7 0.982051282 0.256140351
## 1458 0.084 0.916 zero Group1 383  292  848   7 0.982051282 0.256140351
## 1465 0.084 0.916 zero Group1 383  292  848   7 0.982051282 0.256140351
## 132  0.082 0.918 zero Group1 384  284  856   6 0.984615385 0.249122807
## 418  0.082 0.918 zero Group1 384  284  856   6 0.984615385 0.249122807
## 536  0.082 0.918 zero Group1 384  284  856   6 0.984615385 0.249122807
## 868  0.082 0.918 zero Group1 384  284  856   6 0.984615385 0.249122807
## 891  0.082 0.918 zero Group1 384  284  856   6 0.984615385 0.249122807
## 1183 0.082 0.918 zero Group1 384  284  856   6 0.984615385 0.249122807
## 1249 0.082 0.918 zero Group1 384  284  856   6 0.984615385 0.249122807
## 1360 0.082 0.918 zero Group1 384  284  856   6 0.984615385 0.249122807
## 1383 0.082 0.918  one Group1 384  284  856   6 0.984615385 0.249122807
## 48   0.080 0.920 zero Group1 384  277  863   6 0.984615385 0.242982456
## 156  0.080 0.920 zero Group1 384  277  863   6 0.984615385 0.242982456
## 200  0.080 0.920 zero Group1 384  277  863   6 0.984615385 0.242982456
## 883  0.080 0.920 zero Group1 384  277  863   6 0.984615385 0.242982456
## 1256 0.080 0.920 zero Group1 384  277  863   6 0.984615385 0.242982456
## 1398 0.080 0.920 zero Group1 384  277  863   6 0.984615385 0.242982456
## 1498 0.080 0.920 zero Group1 384  277  863   6 0.984615385 0.242982456
## 162  0.078 0.922 zero Group1 385  271  869   5 0.987179487 0.237719298
## 316  0.078 0.922 zero Group1 385  271  869   5 0.987179487 0.237719298
## 332  0.078 0.922 zero Group1 385  271  869   5 0.987179487 0.237719298
## 622  0.078 0.922 zero Group1 385  271  869   5 0.987179487 0.237719298
## 1100 0.078 0.922 zero Group1 385  271  869   5 0.987179487 0.237719298
## 1198 0.078 0.922  one Group1 385  271  869   5 0.987179487 0.237719298
## 1466 0.078 0.922 zero Group1 385  271  869   5 0.987179487 0.237719298
## 71   0.076 0.924 zero Group1 389  263  877   1 0.997435897 0.230701754
## 152  0.076 0.924 zero Group1 389  263  877   1 0.997435897 0.230701754
## 175  0.076 0.924 zero Group1 389  263  877   1 0.997435897 0.230701754
## 314  0.076 0.924 zero Group1 389  263  877   1 0.997435897 0.230701754
## 656  0.076 0.924  one Group1 389  263  877   1 0.997435897 0.230701754
## 746  0.076 0.924  one Group1 389  263  877   1 0.997435897 0.230701754
## 801  0.076 0.924 zero Group1 389  263  877   1 0.997435897 0.230701754
## 832  0.076 0.924  one Group1 389  263  877   1 0.997435897 0.230701754
## 1281 0.076 0.924 zero Group1 389  263  877   1 0.997435897 0.230701754
## 1401 0.076 0.924 zero Group1 389  263  877   1 0.997435897 0.230701754
## 1425 0.076 0.924 zero Group1 389  263  877   1 0.997435897 0.230701754
## 1492 0.076 0.924  one Group1 389  263  877   1 0.997435897 0.230701754
## 62   0.074 0.926 zero Group1 389  256  884   1 0.997435897 0.224561404
## 70   0.074 0.926 zero Group1 389  256  884   1 0.997435897 0.224561404
## 163  0.074 0.926 zero Group1 389  256  884   1 0.997435897 0.224561404
## 429  0.074 0.926 zero Group1 389  256  884   1 0.997435897 0.224561404
## 555  0.074 0.926 zero Group1 389  256  884   1 0.997435897 0.224561404
## 557  0.074 0.926 zero Group1 389  256  884   1 0.997435897 0.224561404
## 1265 0.074 0.926 zero Group1 389  256  884   1 0.997435897 0.224561404
## 40   0.072 0.928 zero Group1 389  252  888   1 0.997435897 0.221052632
## 355  0.072 0.928 zero Group1 389  252  888   1 0.997435897 0.221052632
## 670  0.072 0.928 zero Group1 389  252  888   1 0.997435897 0.221052632
## 1158 0.072 0.928 zero Group1 389  252  888   1 0.997435897 0.221052632
## 2    0.070 0.930 zero Group1 389  245  895   1 0.997435897 0.214912281
## 103  0.070 0.930 zero Group1 389  245  895   1 0.997435897 0.214912281
## 351  0.070 0.930 zero Group1 389  245  895   1 0.997435897 0.214912281
## 433  0.070 0.930 zero Group1 389  245  895   1 0.997435897 0.214912281
## 538  0.070 0.930 zero Group1 389  245  895   1 0.997435897 0.214912281
## 1150 0.070 0.930 zero Group1 389  245  895   1 0.997435897 0.214912281
## 1174 0.070 0.930 zero Group1 389  245  895   1 0.997435897 0.214912281
## 253  0.068 0.932 zero Group1 389  236  904   1 0.997435897 0.207017544
## 345  0.068 0.932 zero Group1 389  236  904   1 0.997435897 0.207017544
## 350  0.068 0.932 zero Group1 389  236  904   1 0.997435897 0.207017544
## 390  0.068 0.932 zero Group1 389  236  904   1 0.997435897 0.207017544
## 632  0.068 0.932 zero Group1 389  236  904   1 0.997435897 0.207017544
## 1429 0.068 0.932 zero Group1 389  236  904   1 0.997435897 0.207017544
## 1437 0.068 0.932 zero Group1 389  236  904   1 0.997435897 0.207017544
## 1473 0.068 0.932 zero Group1 389  236  904   1 0.997435897 0.207017544
## 1526 0.068 0.932 zero Group1 389  236  904   1 0.997435897 0.207017544
## 39   0.066 0.934 zero Group1 389  227  913   1 0.997435897 0.199122807
## 84   0.066 0.934 zero Group1 389  227  913   1 0.997435897 0.199122807
## 403  0.066 0.934 zero Group1 389  227  913   1 0.997435897 0.199122807
## 481  0.066 0.934 zero Group1 389  227  913   1 0.997435897 0.199122807
## 890  0.066 0.934 zero Group1 389  227  913   1 0.997435897 0.199122807
## 988  0.066 0.934 zero Group1 389  227  913   1 0.997435897 0.199122807
## 1132 0.066 0.934 zero Group1 389  227  913   1 0.997435897 0.199122807
## 1227 0.066 0.934 zero Group1 389  227  913   1 0.997435897 0.199122807
## 1300 0.066 0.934 zero Group1 389  227  913   1 0.997435897 0.199122807
## 431  0.064 0.936 zero Group1 389  219  921   1 0.997435897 0.192105263
## 551  0.064 0.936 zero Group1 389  219  921   1 0.997435897 0.192105263
## 559  0.064 0.936 zero Group1 389  219  921   1 0.997435897 0.192105263
## 836  0.064 0.936 zero Group1 389  219  921   1 0.997435897 0.192105263
## 860  0.064 0.936 zero Group1 389  219  921   1 0.997435897 0.192105263
## 1039 0.064 0.936 zero Group1 389  219  921   1 0.997435897 0.192105263
## 1099 0.064 0.936 zero Group1 389  219  921   1 0.997435897 0.192105263
## 1295 0.064 0.936 zero Group1 389  219  921   1 0.997435897 0.192105263
## 81   0.062 0.938 zero Group1 389  215  925   1 0.997435897 0.188596491
## 462  0.062 0.938 zero Group1 389  215  925   1 0.997435897 0.188596491
## 771  0.062 0.938 zero Group1 389  215  925   1 0.997435897 0.188596491
## 1149 0.062 0.938 zero Group1 389  215  925   1 0.997435897 0.188596491
## 80   0.060 0.940 zero Group1 389  204  936   1 0.997435897 0.178947368
## 82   0.060 0.940 zero Group1 389  204  936   1 0.997435897 0.178947368
## 313  0.060 0.940 zero Group1 389  204  936   1 0.997435897 0.178947368
## 524  0.060 0.940 zero Group1 389  204  936   1 0.997435897 0.178947368
## 530  0.060 0.940 zero Group1 389  204  936   1 0.997435897 0.178947368
## 564  0.060 0.940 zero Group1 389  204  936   1 0.997435897 0.178947368
## 716  0.060 0.940 zero Group1 389  204  936   1 0.997435897 0.178947368
## 945  0.060 0.940 zero Group1 389  204  936   1 0.997435897 0.178947368
## 1008 0.060 0.940 zero Group1 389  204  936   1 0.997435897 0.178947368
## 1280 0.060 0.940 zero Group1 389  204  936   1 0.997435897 0.178947368
## 1315 0.060 0.940 zero Group1 389  204  936   1 0.997435897 0.178947368
## 45   0.058 0.942 zero Group1 389  199  941   1 0.997435897 0.174561404
## 53   0.058 0.942 zero Group1 389  199  941   1 0.997435897 0.174561404
## 664  0.058 0.942 zero Group1 389  199  941   1 0.997435897 0.174561404
## 808  0.058 0.942 zero Group1 389  199  941   1 0.997435897 0.174561404
## 1028 0.058 0.942 zero Group1 389  199  941   1 0.997435897 0.174561404
## 213  0.056 0.944 zero Group1 389  191  949   1 0.997435897 0.167543860
## 374  0.056 0.944 zero Group1 389  191  949   1 0.997435897 0.167543860
## 668  0.056 0.944 zero Group1 389  191  949   1 0.997435897 0.167543860
## 880  0.056 0.944 zero Group1 389  191  949   1 0.997435897 0.167543860
## 884  0.056 0.944 zero Group1 389  191  949   1 0.997435897 0.167543860
## 1027 0.056 0.944 zero Group1 389  191  949   1 0.997435897 0.167543860
## 1073 0.056 0.944 zero Group1 389  191  949   1 0.997435897 0.167543860
## 1394 0.056 0.944 zero Group1 389  191  949   1 0.997435897 0.167543860
## 1372 0.054 0.946 zero Group1 389  189  951   1 0.997435897 0.165789474
## 1475 0.054 0.946 zero Group1 389  189  951   1 0.997435897 0.165789474
## 249  0.052 0.948 zero Group1 389  186  954   1 0.997435897 0.163157895
## 1283 0.052 0.948 zero Group1 389  186  954   1 0.997435897 0.163157895
## 1474 0.052 0.948 zero Group1 389  186  954   1 0.997435897 0.163157895
## 176  0.050 0.950 zero Group1 389  178  962   1 0.997435897 0.156140351
## 371  0.050 0.950 zero Group1 389  178  962   1 0.997435897 0.156140351
## 388  0.050 0.950 zero Group1 389  178  962   1 0.997435897 0.156140351
## 533  0.050 0.950 zero Group1 389  178  962   1 0.997435897 0.156140351
## 1058 0.050 0.950 zero Group1 389  178  962   1 0.997435897 0.156140351
## 1090 0.050 0.950 zero Group1 389  178  962   1 0.997435897 0.156140351
## 1259 0.050 0.950 zero Group1 389  178  962   1 0.997435897 0.156140351
## 1428 0.050 0.950 zero Group1 389  178  962   1 0.997435897 0.156140351
## 96   0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 102  0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 110  0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 404  0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 478  0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 523  0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 529  0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 646  0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 698  0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 1082 0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 1324 0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 1369 0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 1439 0.048 0.952 zero Group1 389  165  975   1 0.997435897 0.144736842
## 161  0.046 0.954 zero Group1 389  161  979   1 0.997435897 0.141228070
## 743  0.046 0.954 zero Group1 389  161  979   1 0.997435897 0.141228070
## 838  0.046 0.954 zero Group1 389  161  979   1 0.997435897 0.141228070
## 943  0.046 0.954 zero Group1 389  161  979   1 0.997435897 0.141228070
## 295  0.044 0.956 zero Group1 389  154  986   1 0.997435897 0.135087719
## 723  0.044 0.956 zero Group1 389  154  986   1 0.997435897 0.135087719
## 736  0.044 0.956 zero Group1 389  154  986   1 0.997435897 0.135087719
## 889  0.044 0.956 zero Group1 389  154  986   1 0.997435897 0.135087719
## 1250 0.044 0.956 zero Group1 389  154  986   1 0.997435897 0.135087719
## 1291 0.044 0.956 zero Group1 389  154  986   1 0.997435897 0.135087719
## 1464 0.044 0.956 zero Group1 389  154  986   1 0.997435897 0.135087719
## 273  0.042 0.958 zero Group1 390  147  993   0 1.000000000 0.128947368
## 287  0.042 0.958 zero Group1 390  147  993   0 1.000000000 0.128947368
## 722  0.042 0.958 zero Group1 390  147  993   0 1.000000000 0.128947368
## 800  0.042 0.958 zero Group1 390  147  993   0 1.000000000 0.128947368
## 807  0.042 0.958 zero Group1 390  147  993   0 1.000000000 0.128947368
## 842  0.042 0.958  one Group1 390  147  993   0 1.000000000 0.128947368
## 1007 0.042 0.958 zero Group1 390  147  993   0 1.000000000 0.128947368
## 1440 0.042 0.958 zero Group1 390  147  993   0 1.000000000 0.128947368
## 16   0.040 0.960 zero Group1 390  139 1001   0 1.000000000 0.121929825
## 334  0.040 0.960 zero Group1 390  139 1001   0 1.000000000 0.121929825
## 598  0.040 0.960 zero Group1 390  139 1001   0 1.000000000 0.121929825
## 601  0.040 0.960 zero Group1 390  139 1001   0 1.000000000 0.121929825
## 699  0.040 0.960 zero Group1 390  139 1001   0 1.000000000 0.121929825
## 936  0.040 0.960 zero Group1 390  139 1001   0 1.000000000 0.121929825
## 1103 0.040 0.960 zero Group1 390  139 1001   0 1.000000000 0.121929825
## 1322 0.040 0.960 zero Group1 390  139 1001   0 1.000000000 0.121929825
## 109  0.038 0.962 zero Group1 390  127 1013   0 1.000000000 0.111403509
## 125  0.038 0.962 zero Group1 390  127 1013   0 1.000000000 0.111403509
## 306  0.038 0.962 zero Group1 390  127 1013   0 1.000000000 0.111403509
## 331  0.038 0.962 zero Group1 390  127 1013   0 1.000000000 0.111403509
## 428  0.038 0.962 zero Group1 390  127 1013   0 1.000000000 0.111403509
## 460  0.038 0.962 zero Group1 390  127 1013   0 1.000000000 0.111403509
## 705  0.038 0.962 zero Group1 390  127 1013   0 1.000000000 0.111403509
## 866  0.038 0.962 zero Group1 390  127 1013   0 1.000000000 0.111403509
## 1087 0.038 0.962 zero Group1 390  127 1013   0 1.000000000 0.111403509
## 1221 0.038 0.962 zero Group1 390  127 1013   0 1.000000000 0.111403509
## 1361 0.038 0.962 zero Group1 390  127 1013   0 1.000000000 0.111403509
## 1447 0.038 0.962 zero Group1 390  127 1013   0 1.000000000 0.111403509
## 59   0.036 0.964 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 299  0.036 0.964 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 419  0.036 0.964 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 451  0.036 0.964 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 574  0.036 0.964 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 700  0.036 0.964 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 938  0.036 0.964 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 957  0.036 0.964 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 1057 0.036 0.964 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 1471 0.036 0.964 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 1528 0.036 0.964 zero Group1 390  116 1024   0 1.000000000 0.101754386
## 86   0.034 0.966 zero Group1 390  113 1027   0 1.000000000 0.099122807
## 298  0.034 0.966 zero Group1 390  113 1027   0 1.000000000 0.099122807
## 448  0.034 0.966 zero Group1 390  113 1027   0 1.000000000 0.099122807
## 35   0.032 0.968 zero Group1 390  104 1036   0 1.000000000 0.091228070
## 742  0.032 0.968 zero Group1 390  104 1036   0 1.000000000 0.091228070
## 816  0.032 0.968 zero Group1 390  104 1036   0 1.000000000 0.091228070
## 1081 0.032 0.968 zero Group1 390  104 1036   0 1.000000000 0.091228070
## 1190 0.032 0.968 zero Group1 390  104 1036   0 1.000000000 0.091228070
## 1395 0.032 0.968 zero Group1 390  104 1036   0 1.000000000 0.091228070
## 1443 0.032 0.968 zero Group1 390  104 1036   0 1.000000000 0.091228070
## 1503 0.032 0.968 zero Group1 390  104 1036   0 1.000000000 0.091228070
## 1517 0.032 0.968 zero Group1 390  104 1036   0 1.000000000 0.091228070
## 141  0.030 0.970 zero Group1 390   97 1043   0 1.000000000 0.085087719
## 576  0.030 0.970 zero Group1 390   97 1043   0 1.000000000 0.085087719
## 671  0.030 0.970 zero Group1 390   97 1043   0 1.000000000 0.085087719
## 719  0.030 0.970 zero Group1 390   97 1043   0 1.000000000 0.085087719
## 733  0.030 0.970 zero Group1 390   97 1043   0 1.000000000 0.085087719
## 764  0.030 0.970 zero Group1 390   97 1043   0 1.000000000 0.085087719
## 1282 0.030 0.970 zero Group1 390   97 1043   0 1.000000000 0.085087719
## 421  0.028 0.972 zero Group1 390   94 1046   0 1.000000000 0.082456140
## 501  0.028 0.972 zero Group1 390   94 1046   0 1.000000000 0.082456140
## 502  0.028 0.972 zero Group1 390   94 1046   0 1.000000000 0.082456140
## 520  0.026 0.974 zero Group1 390   86 1054   0 1.000000000 0.075438596
## 662  0.026 0.974 zero Group1 390   86 1054   0 1.000000000 0.075438596
## 721  0.026 0.974 zero Group1 390   86 1054   0 1.000000000 0.075438596
## 985  0.026 0.974 zero Group1 390   86 1054   0 1.000000000 0.075438596
## 1171 0.026 0.974 zero Group1 390   86 1054   0 1.000000000 0.075438596
## 1173 0.026 0.974 zero Group1 390   86 1054   0 1.000000000 0.075438596
## 1187 0.026 0.974 zero Group1 390   86 1054   0 1.000000000 0.075438596
## 1441 0.026 0.974 zero Group1 390   86 1054   0 1.000000000 0.075438596
## 24   0.024 0.976 zero Group1 390   80 1060   0 1.000000000 0.070175439
## 211  0.024 0.976 zero Group1 390   80 1060   0 1.000000000 0.070175439
## 725  0.024 0.976 zero Group1 390   80 1060   0 1.000000000 0.070175439
## 962  0.024 0.976 zero Group1 390   80 1060   0 1.000000000 0.070175439
## 1044 0.024 0.976 zero Group1 390   80 1060   0 1.000000000 0.070175439
## 1400 0.024 0.976 zero Group1 390   80 1060   0 1.000000000 0.070175439
## 42   0.022 0.978 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 387  0.022 0.978 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 500  0.022 0.978 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 556  0.022 0.978 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 621  0.022 0.978 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 762  0.022 0.978 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 1184 0.022 0.978 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 1257 0.022 0.978 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 1378 0.022 0.978 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 1399 0.022 0.978 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 1514 0.022 0.978 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 1516 0.022 0.978 zero Group1 390   68 1072   0 1.000000000 0.059649123
## 180  0.020 0.980 zero Group1 390   58 1082   0 1.000000000 0.050877193
## 458  0.020 0.980 zero Group1 390   58 1082   0 1.000000000 0.050877193
## 553  0.020 0.980 zero Group1 390   58 1082   0 1.000000000 0.050877193
## 596  0.020 0.980 zero Group1 390   58 1082   0 1.000000000 0.050877193
## 784  0.020 0.980 zero Group1 390   58 1082   0 1.000000000 0.050877193
## 788  0.020 0.980 zero Group1 390   58 1082   0 1.000000000 0.050877193
## 1041 0.020 0.980 zero Group1 390   58 1082   0 1.000000000 0.050877193
## 1155 0.020 0.980 zero Group1 390   58 1082   0 1.000000000 0.050877193
## 1375 0.020 0.980 zero Group1 390   58 1082   0 1.000000000 0.050877193
## 1500 0.020 0.980 zero Group1 390   58 1082   0 1.000000000 0.050877193
## 731  0.018 0.982 zero Group1 390   53 1087   0 1.000000000 0.046491228
## 789  0.018 0.982 zero Group1 390   53 1087   0 1.000000000 0.046491228
## 1205 0.018 0.982 zero Group1 390   53 1087   0 1.000000000 0.046491228
## 1316 0.018 0.982 zero Group1 390   53 1087   0 1.000000000 0.046491228
## 1427 0.018 0.982 zero Group1 390   53 1087   0 1.000000000 0.046491228
## 201  0.016 0.984 zero Group1 390   43 1097   0 1.000000000 0.037719298
## 354  0.016 0.984 zero Group1 390   43 1097   0 1.000000000 0.037719298
## 400  0.016 0.984 zero Group1 390   43 1097   0 1.000000000 0.037719298
## 701  0.016 0.984 zero Group1 390   43 1097   0 1.000000000 0.037719298
## 1017 0.016 0.984 zero Group1 390   43 1097   0 1.000000000 0.037719298
## 1130 0.016 0.984 zero Group1 390   43 1097   0 1.000000000 0.037719298
## 1243 0.016 0.984 zero Group1 390   43 1097   0 1.000000000 0.037719298
## 1255 0.016 0.984 zero Group1 390   43 1097   0 1.000000000 0.037719298
## 1299 0.016 0.984 zero Group1 390   43 1097   0 1.000000000 0.037719298
## 1529 0.016 0.984 zero Group1 390   43 1097   0 1.000000000 0.037719298
## 9    0.014 0.986 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 23   0.014 0.986 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 88   0.014 0.986 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 480  0.014 0.986 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 732  0.014 0.986 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 1061 0.014 0.986 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 1185 0.014 0.986 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 1524 0.014 0.986 zero Group1 390   35 1105   0 1.000000000 0.030701754
## 140  0.012 0.988 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 254  0.012 0.988 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 399  0.012 0.988 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 498  0.012 0.988 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 796  0.012 0.988 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 1107 0.012 0.988 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 1499 0.012 0.988 zero Group1 390   28 1112   0 1.000000000 0.024561404
## 454  0.010 0.990 zero Group1 390   22 1118   0 1.000000000 0.019298246
## 718  0.010 0.990 zero Group1 390   22 1118   0 1.000000000 0.019298246
## 1037 0.010 0.990 zero Group1 390   22 1118   0 1.000000000 0.019298246
## 1323 0.010 0.990 zero Group1 390   22 1118   0 1.000000000 0.019298246
## 1426 0.010 0.990 zero Group1 390   22 1118   0 1.000000000 0.019298246
## 1452 0.010 0.990 zero Group1 390   22 1118   0 1.000000000 0.019298246
## 552  0.008 0.992 zero Group1 390   20 1120   0 1.000000000 0.017543860
## 965  0.008 0.992 zero Group1 390   20 1120   0 1.000000000 0.017543860
## 79   0.006 0.994 zero Group1 390    9 1131   0 1.000000000 0.007894737
## 277  0.006 0.994 zero Group1 390    9 1131   0 1.000000000 0.007894737
## 427  0.006 0.994 zero Group1 390    9 1131   0 1.000000000 0.007894737
## 499  0.006 0.994 zero Group1 390    9 1131   0 1.000000000 0.007894737
## 934  0.006 0.994 zero Group1 390    9 1131   0 1.000000000 0.007894737
## 968  0.006 0.994 zero Group1 390    9 1131   0 1.000000000 0.007894737
## 986  0.006 0.994 zero Group1 390    9 1131   0 1.000000000 0.007894737
## 1032 0.006 0.994 zero Group1 390    9 1131   0 1.000000000 0.007894737
## 1176 0.006 0.994 zero Group1 390    9 1131   0 1.000000000 0.007894737
## 1203 0.006 0.994 zero Group1 390    9 1131   0 1.000000000 0.007894737
## 1358 0.006 0.994 zero Group1 390    9 1131   0 1.000000000 0.007894737
## 376  0.004 0.996 zero Group1 390    6 1134   0 1.000000000 0.005263158
## 453  0.004 0.996 zero Group1 390    6 1134   0 1.000000000 0.005263158
## 1245 0.004 0.996 zero Group1 390    6 1134   0 1.000000000 0.005263158
## 209  0.002 0.998 zero Group1 390    2 1138   0 1.000000000 0.001754386
## 328  0.002 0.998 zero Group1 390    2 1138   0 1.000000000 0.001754386
## 704  0.002 0.998 zero Group1 390    2 1138   0 1.000000000 0.001754386
## 839  0.002 0.998 zero Group1 390    2 1138   0 1.000000000 0.001754386
## 108  0.000 1.000 zero Group1 390    0 1140   0 1.000000000 0.000000000
## 1084 0.000 1.000 zero Group1 390    0 1140   0 1.000000000 0.000000000
##      Informedness      PREC       NPV      MARK         F1        MCC
## 358   0.002564103 1.0000000 0.7455853 0.7455853 0.00511509 0.04372365
## 660   0.005128205 1.0000000 0.7460733 0.7460733 0.01020408 0.06185481
## 343   0.007692308 1.0000000 0.7465619 0.7465619 0.01526718 0.07578116
## 585   0.010256410 1.0000000 0.7470511 0.7470511 0.02030457 0.08753321
## 845   0.012820513 1.0000000 0.7475410 0.7475410 0.02531646 0.09789718
## 980   0.015384615 1.0000000 0.7480315 0.7480315 0.03030303 0.10727617
## 1404  0.017948718 1.0000000 0.7485227 0.7485227 0.03526448 0.11590954
## 1054  0.025641026 1.0000000 0.7500000 0.7500000 0.05000000 0.13867505
## 1071  0.025641026 1.0000000 0.7500000 0.7500000 0.05000000 0.13867505
## 1345  0.025641026 1.0000000 0.7500000 0.7500000 0.05000000 0.13867505
## 340   0.028205128 1.0000000 0.7504937 0.7504937 0.05486284 0.14549149
## 118   0.033333333 1.0000000 0.7514832 0.7514832 0.06451613 0.15827015
## 1386  0.033333333 1.0000000 0.7514832 0.7514832 0.06451613 0.15827015
## 398   0.032456140 0.9285714 0.7513193 0.6798907 0.06435644 0.14854840
## 93    0.035020243 0.9333333 0.7518152 0.6851485 0.06913580 0.15490019
## 919   0.037584345 0.9375000 0.7523118 0.6898118 0.07389163 0.16101591
## 441   0.040148448 0.9411765 0.7528090 0.6939855 0.07862408 0.16692046
## 667   0.039271255 0.8888889 0.7526455 0.6415344 0.07843137 0.15872574
## 852   0.044399460 0.9000000 0.7536424 0.6536424 0.08780488 0.17035659
## 1337  0.044399460 0.9000000 0.7536424 0.6536424 0.08780488 0.17035659
## 783   0.043522267 0.8571429 0.7534791 0.6106220 0.08759124 0.16302041
## 1481  0.046086370 0.8636364 0.7539788 0.6176151 0.09223301 0.16871171
## 849   0.048650472 0.8695652 0.7544791 0.6240443 0.09685230 0.17424136
## 614   0.051214575 0.8750000 0.7549801 0.6299801 0.10144928 0.17962228
## 1483  0.053778677 0.8800000 0.7554817 0.6354817 0.10602410 0.18486581
## 196   0.058906883 0.8888889 0.7564870 0.6453759 0.11510791 0.19497970
## 897   0.058906883 0.8888889 0.7564870 0.6453759 0.11510791 0.19497970
## 135   0.068286100 0.8750000 0.7583445 0.6333445 0.13270142 0.20796303
## 168   0.068286100 0.8750000 0.7583445 0.6333445 0.13270142 0.20796303
## 1001  0.068286100 0.8750000 0.7583445 0.6333445 0.13270142 0.20796303
## 1268  0.068286100 0.8750000 0.7583445 0.6333445 0.13270142 0.20796303
## 1409  0.068286100 0.8750000 0.7583445 0.6333445 0.13270142 0.20796303
## 1122  0.070850202 0.8787879 0.7588510 0.6376389 0.13711584 0.21254846
## 339   0.073414305 0.8823529 0.7593583 0.6417112 0.14150943 0.21705019
## 439   0.078542510 0.8888889 0.7603748 0.6492637 0.15023474 0.22582029
## 1121  0.078542510 0.8888889 0.7603748 0.6492637 0.15023474 0.22582029
## 1387  0.081106613 0.8918919 0.7608841 0.6527760 0.15456674 0.23009661
## 823   0.086234818 0.8974359 0.7619048 0.6593407 0.16317016 0.23844941
## 925   0.086234818 0.8974359 0.7619048 0.6593407 0.16317016 0.23844941
## 681   0.093927126 0.9047619 0.7634409 0.6682028 0.17592593 0.25052418
## 1066  0.093927126 0.9047619 0.7634409 0.6682028 0.17592593 0.25052418
## 1335  0.093927126 0.9047619 0.7634409 0.6682028 0.17592593 0.25052418
## 436   0.099055331 0.9090909 0.7644684 0.6735593 0.18433180 0.25830145
## 1488  0.099055331 0.9090909 0.7644684 0.6735593 0.18433180 0.25830145
## 1236  0.101619433 0.9111111 0.7649832 0.6760943 0.18850575 0.26211508
## 233   0.110998650 0.9000000 0.7668919 0.6668919 0.20454545 0.27207370
## 684   0.110998650 0.9000000 0.7668919 0.6668919 0.20454545 0.27207370
## 887   0.110998650 0.9000000 0.7668919 0.6668919 0.20454545 0.27207370
## 922   0.110998650 0.9000000 0.7668919 0.6668919 0.20454545 0.27207370
## 1334  0.110998650 0.9000000 0.7668919 0.6668919 0.20454545 0.27207370
## 761   0.113562753 0.9019608 0.7674104 0.6693712 0.20861678 0.27570933
## 100   0.116936572 0.8727273 0.7681356 0.6408629 0.21573034 0.27375227
## 111   0.116936572 0.8727273 0.7681356 0.6408629 0.21573034 0.27375227
## 583   0.116936572 0.8727273 0.7681356 0.6408629 0.21573034 0.27375227
## 785   0.116936572 0.8727273 0.7681356 0.6408629 0.21573034 0.27375227
## 582   0.122064777 0.8771930 0.7691785 0.6463715 0.22371365 0.28089001
## 1482  0.122064777 0.8771930 0.7691785 0.6463715 0.22371365 0.28089001
## 773   0.121187584 0.8620690 0.7690217 0.6310907 0.22321429 0.27655082
## 364   0.123751687 0.8644068 0.7695445 0.6339513 0.22717149 0.28009381
## 1314  0.128879892 0.8688525 0.7705922 0.6394447 0.23503326 0.28707414
## 1485  0.128879892 0.8688525 0.7705922 0.6394447 0.23503326 0.28707414
## 679   0.131443995 0.8709677 0.7711172 0.6420849 0.23893805 0.29051369
## 134   0.136572200 0.8750000 0.7721692 0.6471692 0.24669604 0.29729668
## 924   0.136572200 0.8750000 0.7721692 0.6471692 0.24669604 0.29729668
## 272   0.135695007 0.8615385 0.7720137 0.6335521 0.24615385 0.29320617
## 98    0.137381916 0.8507463 0.7723855 0.6231318 0.24945295 0.29258680
## 558   0.137381916 0.8507463 0.7723855 0.6231318 0.24945295 0.29258680
## 119   0.142510121 0.8550725 0.7734428 0.6285153 0.25708061 0.29928213
## 1490  0.142510121 0.8550725 0.7734428 0.6285153 0.25708061 0.29928213
## 902   0.145074224 0.8571429 0.7739726 0.6311155 0.26086957 0.30258649
## 898   0.150202429 0.8611111 0.7750343 0.6361454 0.26839827 0.30911258
## 1311  0.150202429 0.8611111 0.7750343 0.6361454 0.26839827 0.30911258
## 124   0.155330634 0.8648649 0.7760989 0.6409638 0.27586207 0.31553337
## 827   0.155330634 0.8648649 0.7760989 0.6409638 0.27586207 0.31553337
## 543   0.160458839 0.8684211 0.7771664 0.6455875 0.28326180 0.32185434
## 1406  0.160458839 0.8684211 0.7771664 0.6455875 0.28326180 0.32185434
## 1308  0.163022942 0.8701299 0.7777013 0.6478312 0.28693790 0.32497899
## 61    0.166396761 0.8518519 0.7784679 0.6303198 0.29299363 0.32385671
## 1053  0.166396761 0.8518519 0.7784679 0.6303198 0.29299363 0.32385671
## 1125  0.166396761 0.8518519 0.7784679 0.6303198 0.29299363 0.32385671
## 1388  0.166396761 0.8518519 0.7784679 0.6303198 0.29299363 0.32385671
## 680   0.174089069 0.8571429 0.7800830 0.6372258 0.30379747 0.33306764
## 682   0.174089069 0.8571429 0.7800830 0.6372258 0.30379747 0.33306764
## 1168  0.174089069 0.8571429 0.7800830 0.6372258 0.30379747 0.33306764
## 834   0.178340081 0.8505747 0.7810118 0.6315865 0.31027254 0.33561464
## 1094  0.178340081 0.8505747 0.7810118 0.6315865 0.31027254 0.33561464
## 1223  0.178340081 0.8505747 0.7810118 0.6315865 0.31027254 0.33561464
## 830   0.177462888 0.8409091 0.7808599 0.6217690 0.30962343 0.33217604
## 216   0.175708502 0.8222222 0.7805556 0.6027778 0.30833333 0.32544305
## 1362  0.175708502 0.8222222 0.7805556 0.6027778 0.30833333 0.32544305
## 749   0.177395412 0.8152174 0.7809458 0.5961631 0.31120332 0.32520241
## 1510  0.177395412 0.8152174 0.7809458 0.5961631 0.31120332 0.32520241
## 122   0.190215924 0.8247423 0.7836706 0.6084129 0.32854209 0.34019086
## 411   0.190215924 0.8247423 0.7836706 0.6084129 0.32854209 0.34019086
## 750   0.190215924 0.8247423 0.7836706 0.6084129 0.32854209 0.34019086
## 1200  0.190215924 0.8247423 0.7836706 0.6084129 0.32854209 0.34019086
## 1346  0.190215924 0.8247423 0.7836706 0.6084129 0.32854209 0.34019086
## 414   0.194466937 0.8200000 0.7846154 0.6046154 0.33469388 0.34289605
## 929   0.194466937 0.8200000 0.7846154 0.6046154 0.33469388 0.34289605
## 1333  0.194466937 0.8200000 0.7846154 0.6046154 0.33469388 0.34289605
## 136   0.196153846 0.8137255 0.7850140 0.5987395 0.33739837 0.34270258
## 819   0.196153846 0.8137255 0.7850140 0.5987395 0.33739837 0.34270258
## 489   0.197840756 0.8076923 0.7854137 0.5931061 0.34008097 0.34255007
## 918   0.197840756 0.8076923 0.7854137 0.5931061 0.34008097 0.34255007
## 269   0.199527665 0.8018868 0.7858146 0.5877014 0.34274194 0.34243640
## 465   0.199527665 0.8018868 0.7858146 0.5877014 0.34274194 0.34243640
## 194   0.204655870 0.8055556 0.7869198 0.5924754 0.34939759 0.34821483
## 828   0.204655870 0.8055556 0.7869198 0.5924754 0.34939759 0.34821483
## 653   0.207219973 0.8073394 0.7874736 0.5948131 0.35270541 0.35107997
## 117   0.209784076 0.8090909 0.7880282 0.5971191 0.35600000 0.35392948
## 360   0.217476383 0.8141593 0.7896965 0.6038558 0.36580517 0.36238706
## 366   0.217476383 0.8141593 0.7896965 0.6038558 0.36580517 0.36238706
## 437   0.217476383 0.8141593 0.7896965 0.6038558 0.36580517 0.36238706
## 994   0.220040486 0.8157895 0.7902542 0.6060437 0.36904762 0.36517688
## 840   0.219163293 0.8086957 0.7901060 0.5988017 0.36831683 0.36226419
## 265   0.221727395 0.8103448 0.7906648 0.6010096 0.37154150 0.36504835
## 113   0.219973009 0.7966102 0.7903683 0.5869784 0.37007874 0.35933190
## 572   0.219973009 0.7966102 0.7903683 0.5869784 0.37007874 0.35933190
## 321   0.221659919 0.7916667 0.7907801 0.5824468 0.37254902 0.35931200
## 775   0.221659919 0.7916667 0.7907801 0.5824468 0.37254902 0.35931200
## 337   0.223346829 0.7868852 0.7911932 0.5780784 0.37500000 0.35932156
## 1293  0.223346829 0.7868852 0.7911932 0.5780784 0.37500000 0.35932156
## 232   0.225910931 0.7886179 0.7917555 0.5803734 0.37816764 0.36209487
## 999   0.228475034 0.7903226 0.7923186 0.5826412 0.38132296 0.36485473
## 1096  0.231039136 0.7920000 0.7928826 0.5848826 0.38446602 0.36760136
## 1341  0.233603239 0.7936508 0.7934473 0.5870981 0.38759690 0.37033500
## 464   0.234412955 0.7829457 0.7937188 0.5766645 0.38921002 0.36766511
## 1241  0.234412955 0.7829457 0.7937188 0.5766645 0.38921002 0.36766511
## 1508  0.234412955 0.7829457 0.7937188 0.5766645 0.38921002 0.36766511
## 1445  0.233535762 0.7769231 0.7935714 0.5704945 0.38846154 0.36500804
## 591   0.232658570 0.7709924 0.7934239 0.5644162 0.38771593 0.36237588
## 755   0.235222672 0.7727273 0.7939914 0.5667187 0.39080460 0.36510969
## 541   0.242914980 0.7777778 0.7956989 0.5734767 0.40000000 0.37323730
## 709   0.242914980 0.7777778 0.7956989 0.5734767 0.40000000 0.37323730
## 806   0.242914980 0.7777778 0.7956989 0.5734767 0.40000000 0.37323730
## 989   0.242037787 0.7720588 0.7955524 0.5676112 0.39923954 0.37065261
## 199   0.248852901 0.7714286 0.7971223 0.5685509 0.40754717 0.37614563
## 504   0.248852901 0.7714286 0.7971223 0.5685509 0.40754717 0.37614563
## 581   0.248852901 0.7714286 0.7971223 0.5685509 0.40754717 0.37614563
## 615   0.248852901 0.7714286 0.7971223 0.5685509 0.40754717 0.37614563
## 204   0.247975709 0.7659574 0.7969762 0.5629337 0.40677966 0.37362264
## 612   0.254790823 0.7655172 0.7985560 0.5640732 0.41495327 0.37910510
## 1326  0.254790823 0.7655172 0.7985560 0.5640732 0.41495327 0.37910510
## 1405  0.254790823 0.7655172 0.7985560 0.5640732 0.41495327 0.37910510
## 1413  0.254790823 0.7655172 0.7985560 0.5640732 0.41495327 0.37910510
## 953   0.253036437 0.7551020 0.7982646 0.5533667 0.41340782 0.37419505
## 1157  0.253036437 0.7551020 0.7982646 0.5533667 0.41340782 0.37419505
## 230   0.253846154 0.7466667 0.7985507 0.5452174 0.41481481 0.37202330
## 362   0.253846154 0.7466667 0.7985507 0.5452174 0.41481481 0.37202330
## 805   0.253846154 0.7466667 0.7985507 0.5452174 0.41481481 0.37202330
## 848   0.258974359 0.7500000 0.7997097 0.5497097 0.42066421 0.37730720
## 1313  0.258974359 0.7500000 0.7997097 0.5497097 0.42066421 0.37730720
## 178   0.258097166 0.7450980 0.7995643 0.5446623 0.41988950 0.37493439
## 1095  0.260661269 0.7467532 0.8001453 0.5468986 0.42279412 0.37756494
## 363   0.263225371 0.7483871 0.8007273 0.5491144 0.42568807 0.38018526
## 89    0.264912281 0.7452229 0.8011653 0.5463883 0.42778793 0.38045362
## 274   0.264912281 0.7452229 0.8011653 0.5463883 0.42778793 0.38045362
## 756   0.270040486 0.7484277 0.8023341 0.5507617 0.43351548 0.38565265
## 1139  0.270040486 0.7484277 0.8023341 0.5507617 0.43351548 0.38565265
## 554   0.271727395 0.7453416 0.8027757 0.5481174 0.43557169 0.38592552
## 753   0.271727395 0.7453416 0.8027757 0.5481174 0.43557169 0.38592552
## 977   0.275978408 0.7439024 0.8038067 0.5477092 0.44043321 0.38878774
## 1320  0.275978408 0.7439024 0.8038067 0.5477092 0.44043321 0.38878774
## 1342  0.275978408 0.7439024 0.8038067 0.5477092 0.44043321 0.38878774
## 635   0.275101215 0.7393939 0.8036630 0.5430569 0.43963964 0.38651730
## 468   0.278475034 0.7337278 0.8045555 0.5382833 0.44364937 0.38716722
## 685   0.278475034 0.7337278 0.8045555 0.5382833 0.44364937 0.38716722
## 1023  0.278475034 0.7337278 0.8045555 0.5382833 0.44364937 0.38716722
## 1049  0.278475034 0.7337278 0.8045555 0.5382833 0.44364937 0.38716722
## 391   0.281848853 0.7283237 0.8054532 0.5337769 0.44760213 0.38787164
## 420   0.281848853 0.7283237 0.8054532 0.5337769 0.44760213 0.38787164
## 751   0.281848853 0.7283237 0.8054532 0.5337769 0.44760213 0.38787164
## 1052  0.281848853 0.7283237 0.8054532 0.5337769 0.44760213 0.38787164
## 1126  0.284412955 0.7298851 0.8060472 0.5359323 0.45035461 0.39041782
## 1124  0.286977058 0.7314286 0.8066421 0.5380706 0.45309735 0.39295538
## 826   0.292105263 0.7344633 0.8078344 0.5422977 0.45855379 0.39800505
## 1343  0.292105263 0.7344633 0.8078344 0.5422977 0.45855379 0.39800505
## 835   0.297233468 0.7374302 0.8090303 0.5464605 0.46397188 0.40302153
## 1136  0.297233468 0.7374302 0.8090303 0.5464605 0.46397188 0.40302153
## 281   0.295479082 0.7292818 0.8087472 0.5380290 0.46234676 0.39871834
## 1506  0.295479082 0.7292818 0.8087472 0.5380290 0.46234676 0.39871834
## 686   0.298043185 0.7307692 0.8093472 0.5401164 0.46503497 0.40122066
## 263   0.300539811 0.7219251 0.8101266 0.5320517 0.46793761 0.39987838
## 549   0.300539811 0.7219251 0.8101266 0.5320517 0.46793761 0.39987838
## 566   0.300539811 0.7219251 0.8101266 0.5320517 0.46793761 0.39987838
## 573   0.300539811 0.7219251 0.8101266 0.5320517 0.46793761 0.39987838
## 951   0.300539811 0.7219251 0.8101266 0.5320517 0.46793761 0.39987838
## 22    0.298785425 0.7142857 0.8098434 0.5241291 0.46632124 0.39572988
## 327   0.298785425 0.7142857 0.8098434 0.5241291 0.46632124 0.39572988
## 205   0.305600540 0.7150259 0.8115183 0.5265442 0.47341338 0.40113863
## 1135  0.305600540 0.7150259 0.8115183 0.5265442 0.47341338 0.40113863
## 1270  0.305600540 0.7150259 0.8115183 0.5265442 0.47341338 0.40113863
## 1416  0.305600540 0.7150259 0.8115183 0.5265442 0.47341338 0.40113863
## 613   0.309851552 0.7142857 0.8125937 0.5268794 0.47781570 0.40404753
## 979   0.309851552 0.7142857 0.8125937 0.5268794 0.47781570 0.40404753
## 1468  0.309851552 0.7142857 0.8125937 0.5268794 0.47781570 0.40404753
## 539   0.311538462 0.7121212 0.8130631 0.5251843 0.47959184 0.40449364
## 1412  0.311538462 0.7121212 0.8130631 0.5251843 0.47959184 0.40449364
## 8     0.313225371 0.7100000 0.8135338 0.5235338 0.48135593 0.40494948
## 981   0.313225371 0.7100000 0.8135338 0.5235338 0.48135593 0.40494948
## 54    0.312348178 0.7064677 0.8133935 0.5198612 0.48054146 0.40296116
## 338   0.320040486 0.7107843 0.8152338 0.5260181 0.48821549 0.41030122
## 368   0.320040486 0.7107843 0.8152338 0.5260181 0.48821549 0.41030122
## 688   0.320040486 0.7107843 0.8152338 0.5260181 0.48821549 0.41030122
## 713   0.317408907 0.7004831 0.8148148 0.5152979 0.48576214 0.40442570
## 991   0.317408907 0.7004831 0.8148148 0.5152979 0.48576214 0.40442570
## 1210  0.317408907 0.7004831 0.8148148 0.5152979 0.48576214 0.40442570
## 511   0.319095816 0.6985646 0.8152914 0.5138560 0.48747913 0.40493124
## 931   0.319095816 0.6985646 0.8152914 0.5138560 0.48747913 0.40493124
## 256   0.319905533 0.6933962 0.8156297 0.5090260 0.48837209 0.40353466
## 259   0.319905533 0.6933962 0.8156297 0.5090260 0.48837209 0.40353466
## 772   0.319905533 0.6933962 0.8156297 0.5090260 0.48837209 0.40353466
## 181   0.324156545 0.6930233 0.8167300 0.5097533 0.49256198 0.40649707
## 649   0.324156545 0.6930233 0.8167300 0.5097533 0.49256198 0.40649707
## 754   0.324156545 0.6930233 0.8167300 0.5097533 0.49256198 0.40649707
## 687   0.328407557 0.6926606 0.8178354 0.5104959 0.49671053 0.40945173
## 843   0.328407557 0.6926606 0.8178354 0.5104959 0.49671053 0.40945173
## 1523  0.328407557 0.6926606 0.8178354 0.5104959 0.49671053 0.40945173
## 91    0.330094467 0.6909091 0.8183206 0.5092297 0.49836066 0.40999257
## 636   0.330094467 0.6909091 0.8183206 0.5092297 0.49836066 0.40999257
## 982   0.331781377 0.6891892 0.8188073 0.5079965 0.50000000 0.41054085
## 1050  0.331781377 0.6891892 0.8188073 0.5079965 0.50000000 0.41054085
## 167   0.334345479 0.6905830 0.8194338 0.5100168 0.50244698 0.41294286
## 1152  0.332591093 0.6844444 0.8191571 0.5036015 0.50081301 0.40925956
## 1180  0.332591093 0.6844444 0.8191571 0.5036015 0.50081301 0.40925956
## 324   0.333400810 0.6798246 0.8195084 0.4993330 0.50161812 0.40801719
## 392   0.333400810 0.6798246 0.8195084 0.4993330 0.50161812 0.40801719
## 657   0.333400810 0.6798246 0.8195084 0.4993330 0.50161812 0.40801719
## 170   0.337651822 0.6796537 0.8206313 0.5002849 0.50563607 0.41100136
## 579   0.337651822 0.6796537 0.8206313 0.5002849 0.50563607 0.41100136
## 1370  0.337651822 0.6796537 0.8206313 0.5002849 0.50563607 0.41100136
## 121   0.344466937 0.6808511 0.8223938 0.5032449 0.51200000 0.41635469
## 804   0.344466937 0.6808511 0.8223938 0.5032449 0.51200000 0.41635469
## 915   0.344466937 0.6808511 0.8223938 0.5032449 0.51200000 0.41635469
## 1415  0.344466937 0.6808511 0.8223938 0.5032449 0.51200000 0.41635469
## 29    0.346153846 0.6793249 0.8228925 0.5022174 0.51355662 0.41694662
## 1240  0.346153846 0.6793249 0.8228925 0.5022174 0.51355662 0.41694662
## 415   0.351282051 0.6820084 0.8241673 0.5061757 0.51828299 0.42167574
## 586   0.351282051 0.6820084 0.8241673 0.5061757 0.51828299 0.42167574
## 896   0.358974359 0.6859504 0.8260870 0.5120374 0.52531646 0.42872869
## 1068  0.358974359 0.6859504 0.8260870 0.5120374 0.52531646 0.42872869
## 1381  0.358974359 0.6859504 0.8260870 0.5120374 0.52531646 0.42872869
## 512   0.360661269 0.6844262 0.8265941 0.5110203 0.52681388 0.42930786
## 1004  0.360661269 0.6844262 0.8265941 0.5110203 0.52681388 0.42930786
## 603   0.363225371 0.6857143 0.8272374 0.5129516 0.52913386 0.43164459
## 92    0.370040486 0.6867470 0.8290398 0.5157868 0.53521127 0.43687756
## 757   0.370040486 0.6867470 0.8290398 0.5157868 0.53521127 0.43687756
## 881   0.370040486 0.6867470 0.8290398 0.5157868 0.53521127 0.43687756
## 1403  0.370040486 0.6867470 0.8290398 0.5157868 0.53521127 0.43687756
## 423   0.371727395 0.6852590 0.8295543 0.5148133 0.53666147 0.43745881
## 1140  0.371727395 0.6852590 0.8295543 0.5148133 0.53666147 0.43745881
## 537   0.370850202 0.6825397 0.8294210 0.5119607 0.53582555 0.43573009
## 197   0.382793522 0.6860465 0.8325472 0.5185937 0.54629630 0.44554944
## 587   0.382793522 0.6860465 0.8325472 0.5185937 0.54629630 0.44554944
## 850   0.382793522 0.6860465 0.8325472 0.5185937 0.54629630 0.44554944
## 1161  0.382793522 0.6860465 0.8325472 0.5185937 0.54629630 0.44554944
## 1393  0.382793522 0.6860465 0.8325472 0.5185937 0.54629630 0.44554944
## 1407  0.382793522 0.6860465 0.8325472 0.5185937 0.54629630 0.44554944
## 260   0.387044534 0.6858238 0.8337273 0.5195511 0.54992320 0.44842994
## 782   0.387044534 0.6858238 0.8337273 0.5195511 0.54992320 0.44842994
## 921   0.387044534 0.6858238 0.8337273 0.5195511 0.54992320 0.44842994
## 903   0.389608637 0.6870229 0.8343849 0.5214078 0.55214724 0.45071606
## 55    0.390418354 0.6830189 0.8347826 0.5178015 0.55267176 0.44962117
## 264   0.390418354 0.6830189 0.8347826 0.5178015 0.55267176 0.44962117
## 1389  0.390418354 0.6830189 0.8347826 0.5178015 0.55267176 0.44962117
## 486   0.389541161 0.6804511 0.8346519 0.5151030 0.55182927 0.44794400
## 229   0.391228070 0.6791045 0.8351823 0.5142867 0.55319149 0.44855702
## 1239  0.391228070 0.6791045 0.8351823 0.5142867 0.55319149 0.44855702
## 737   0.390350877 0.6765799 0.8350515 0.5116315 0.55235205 0.44689573
## 461   0.389406208 0.6678832 0.8351911 0.5030743 0.55120482 0.44260621
## 790   0.389406208 0.6678832 0.8351911 0.5030743 0.55120482 0.44260621
## 992   0.389406208 0.6678832 0.8351911 0.5030743 0.55120482 0.44260621
## 1353  0.389406208 0.6678832 0.8351911 0.5030743 0.55120482 0.44260621
## 1368  0.389406208 0.6678832 0.8351911 0.5030743 0.55120482 0.44260621
## 858   0.387651822 0.6630435 0.8349282 0.4979717 0.54954955 0.43936277
## 1460  0.387651822 0.6630435 0.8349282 0.4979717 0.54954955 0.43936277
## 147   0.387584345 0.6571429 0.8352000 0.4923429 0.54925373 0.43683450
## 401   0.387584345 0.6571429 0.8352000 0.4923429 0.54925373 0.43683450
## 445   0.387584345 0.6571429 0.8352000 0.4923429 0.54925373 0.43683450
## 846   0.387584345 0.6571429 0.8352000 0.4923429 0.54925373 0.43683450
## 1513  0.386707152 0.6548043 0.8350681 0.4898723 0.54843517 0.43524376
## 901   0.389271255 0.6560284 0.8357372 0.4917655 0.55059524 0.43752736
## 998   0.394399460 0.6584507 0.8370787 0.4955294 0.55489614 0.44208202
## 1338  0.394399460 0.6584507 0.8370787 0.4955294 0.55489614 0.44208202
## 1070  0.399527665 0.6608392 0.8384244 0.4992636 0.55917160 0.44662022
## 1309  0.399527665 0.6608392 0.8384244 0.4992636 0.55917160 0.44662022
## 107   0.400337382 0.6574394 0.8388396 0.4962791 0.55964654 0.44573431
## 373   0.400337382 0.6574394 0.8388396 0.4962791 0.55964654 0.44573431
## 1138  0.400337382 0.6574394 0.8388396 0.4962791 0.55964654 0.44573431
## 607   0.402024291 0.6563574 0.8393866 0.4957440 0.56093979 0.44643155
## 623   0.402024291 0.6563574 0.8393866 0.4957440 0.56093979 0.44643155
## 983   0.400269906 0.6518771 0.8391269 0.4910041 0.55929722 0.44332172
## 1119  0.400269906 0.6518771 0.8391269 0.4910041 0.55929722 0.44332172
## 169   0.403643725 0.6498316 0.8402271 0.4900587 0.56186317 0.44475739
## 357   0.403643725 0.6498316 0.8402271 0.4900587 0.56186317 0.44475739
## 455   0.403643725 0.6498316 0.8402271 0.4900587 0.56186317 0.44475739
## 856   0.403643725 0.6498316 0.8402271 0.4900587 0.56186317 0.44475739
## 1384  0.405330634 0.6488294 0.8407799 0.4896093 0.56313498 0.44548136
## 1462  0.405330634 0.6488294 0.8407799 0.4896093 0.56313498 0.44548136
## 222   0.407017544 0.6478405 0.8413344 0.4891749 0.56439942 0.44620935
## 1162  0.407017544 0.6478405 0.8413344 0.4891749 0.56439942 0.44620935
## 31    0.408704453 0.6468647 0.8418908 0.4887555 0.56565657 0.44694132
## 1480  0.408704453 0.6468647 0.8418908 0.4887555 0.56565657 0.44694132
## 267   0.411268556 0.6480263 0.8425775 0.4906038 0.56772334 0.44918807
## 408   0.413832659 0.6491803 0.8432653 0.4924456 0.56978417 0.45143115
## 3     0.412078273 0.6449511 0.8430090 0.4879601 0.56814921 0.44841696
## 492   0.412078273 0.6449511 0.8430090 0.4879601 0.56814921 0.44841696
## 795   0.410323887 0.6407767 0.8427518 0.4835285 0.56652361 0.44542487
## 1494  0.410323887 0.6407767 0.8427518 0.4835285 0.56652361 0.44542487
## 625   0.409446694 0.6387097 0.8426230 0.4813326 0.56571429 0.44393699
## 906   0.412010796 0.6398714 0.8433142 0.4831856 0.56776034 0.44618121
## 617   0.415384615 0.6380952 0.8444444 0.4825397 0.57021277 0.44770477
## 893   0.415384615 0.6380952 0.8444444 0.4825397 0.57021277 0.44770477
## 1118  0.415384615 0.6380952 0.8444444 0.4825397 0.57021277 0.44770477
## 1411  0.415384615 0.6380952 0.8444444 0.4825397 0.57021277 0.44770477
## 634   0.414507422 0.6360759 0.8443163 0.4803923 0.56940510 0.44623554
## 885   0.413630229 0.6340694 0.8441880 0.4782574 0.56859972 0.44477152
## 244   0.410998650 0.6281250 0.8438017 0.4719267 0.56619718 0.44041028
## 1351  0.410998650 0.6281250 0.8438017 0.4719267 0.56619718 0.44041028
## 1392  0.410998650 0.6281250 0.8438017 0.4719267 0.56619718 0.44041028
## 203   0.412685560 0.6273292 0.8443709 0.4717001 0.56741573 0.44120721
## 844   0.412685560 0.6273292 0.8443709 0.4717001 0.56741573 0.44120721
## 645   0.410931174 0.6234568 0.8441128 0.4675696 0.56582633 0.43833652
## 706   0.410931174 0.6234568 0.8441128 0.4675696 0.56582633 0.43833652
## 1080  0.410053981 0.6215385 0.8439834 0.4655219 0.56503497 0.43690856
## 588   0.407422402 0.6158537 0.8435940 0.4594477 0.56267409 0.43265376
## 1297  0.407422402 0.6158537 0.8435940 0.4594477 0.56267409 0.43265376
## 1367  0.407422402 0.6158537 0.8435940 0.4594477 0.56267409 0.43265376
## 1137  0.409986505 0.6170213 0.8442964 0.4613177 0.56467316 0.43489542
## 648   0.411673414 0.6163142 0.8448707 0.4611849 0.56588072 0.43572649
## 744   0.411673414 0.6163142 0.8448707 0.4611849 0.56588072 0.43572649
## 179   0.410796221 0.6144578 0.8447412 0.4591991 0.56509695 0.43432389
## 50    0.413292848 0.6112760 0.8457670 0.4570429 0.56671252 0.43461774
## 410   0.413292848 0.6112760 0.8457670 0.4570429 0.56671252 0.43461774
## 447   0.413292848 0.6112760 0.8457670 0.4570429 0.56671252 0.43461774
## 515   0.413292848 0.6112760 0.8457670 0.4570429 0.56671252 0.43461774
## 1232  0.413292848 0.6112760 0.8457670 0.4570429 0.56671252 0.43461774
## 446   0.411538462 0.6076696 0.8455080 0.4531776 0.56515775 0.43185647
## 1055  0.411538462 0.6076696 0.8455080 0.4531776 0.56515775 0.43185647
## 41    0.410661269 0.6058824 0.8453782 0.4512605 0.56438356 0.43048253
## 166   0.413225371 0.6070381 0.8460892 0.4531273 0.56634747 0.43271663
## 1331  0.415789474 0.6081871 0.8468013 0.4549885 0.56830601 0.43494761
## 57    0.418286100 0.6051873 0.8478445 0.4530318 0.56987788 0.43531241
## 518   0.418286100 0.6051873 0.8478445 0.4530318 0.56987788 0.43531241
## 578   0.418286100 0.6051873 0.8478445 0.4530318 0.56987788 0.43531241
## 1231  0.418286100 0.6051873 0.8478445 0.4530318 0.56987788 0.43531241
## 1421  0.418286100 0.6051873 0.8478445 0.4530318 0.56987788 0.43531241
## 627   0.419905533 0.6005666 0.8487681 0.4493346 0.57065949 0.43437092
## 630   0.419905533 0.6005666 0.8487681 0.4493346 0.57065949 0.43437092
## 825   0.419905533 0.6005666 0.8487681 0.4493346 0.57065949 0.43437092
## 946   0.419905533 0.6005666 0.8487681 0.4493346 0.57065949 0.43437092
## 1005  0.419905533 0.6005666 0.8487681 0.4493346 0.57065949 0.43437092
## 1092  0.419905533 0.6005666 0.8487681 0.4493346 0.57065949 0.43437092
## 720   0.419028340 0.5988701 0.8486395 0.4475095 0.56989247 0.43303483
## 275   0.422402159 0.5977654 0.8498294 0.4475947 0.57219251 0.43481602
## 308   0.422402159 0.5977654 0.8498294 0.4475947 0.57219251 0.43481602
## 580   0.422402159 0.5977654 0.8498294 0.4475947 0.57219251 0.43481602
## 1305  0.422402159 0.5977654 0.8498294 0.4475947 0.57219251 0.43481602
## 52    0.425775978 0.5966851 0.8510274 0.4477125 0.57446809 0.43660648
## 302   0.425775978 0.5966851 0.8510274 0.4477125 0.57446809 0.43660648
## 655   0.425775978 0.5966851 0.8510274 0.4477125 0.57446809 0.43660648
## 907   0.425775978 0.5966851 0.8510274 0.4477125 0.57446809 0.43660648
## 293   0.425708502 0.5928962 0.8513746 0.4442707 0.57407407 0.43489060
## 693   0.425708502 0.5928962 0.8513746 0.4442707 0.57407407 0.43489060
## 1247  0.425708502 0.5928962 0.8513746 0.4442707 0.57407407 0.43489060
## 1332  0.425708502 0.5928962 0.8513746 0.4442707 0.57407407 0.43489060
## 116   0.430836707 0.5951087 0.8528399 0.4479486 0.57783641 0.43930936
## 258   0.430836707 0.5951087 0.8528399 0.4479486 0.57783641 0.43930936
## 496   0.429082321 0.5918919 0.8525862 0.4444781 0.57631579 0.43671237
## 674   0.429082321 0.5918919 0.8525862 0.4444781 0.57631579 0.43671237
## 463   0.429892038 0.5898123 0.8530683 0.4428806 0.57667104 0.43633800
## 503   0.429892038 0.5898123 0.8530683 0.4428806 0.57667104 0.43633800
## 610   0.429892038 0.5898123 0.8530683 0.4428806 0.57667104 0.43633800
## 36    0.428137652 0.5866667 0.8528139 0.4394805 0.57516340 0.43377201
## 1262  0.428137652 0.5866667 0.8528139 0.4394805 0.57516340 0.43377201
## 252   0.429824561 0.5862069 0.8534258 0.4396327 0.57627119 0.43470099
## 1339  0.429824561 0.5862069 0.8534258 0.4396327 0.57627119 0.43470099
## 10    0.428879892 0.5811518 0.8536585 0.4348104 0.57512953 0.43183495
## 130   0.428879892 0.5811518 0.8536585 0.4348104 0.57512953 0.43183495
## 146   0.428879892 0.5811518 0.8536585 0.4348104 0.57512953 0.43183495
## 647   0.428879892 0.5811518 0.8536585 0.4348104 0.57512953 0.43183495
## 1435  0.428879892 0.5811518 0.8536585 0.4348104 0.57512953 0.43183495
## 402   0.425371120 0.5751295 0.8531469 0.4282764 0.57216495 0.42682128
## 837   0.425371120 0.5751295 0.8531469 0.4282764 0.57216495 0.42682128
## 1217  0.425371120 0.5751295 0.8531469 0.4282764 0.57216495 0.42682128
## 1286  0.425371120 0.5751295 0.8531469 0.4282764 0.57216495 0.42682128
## 409   0.427058030 0.5747423 0.8537653 0.4285076 0.57326478 0.42778220
## 1220  0.427058030 0.5747423 0.8537653 0.4285076 0.57326478 0.42778220
## 641   0.427867746 0.5728900 0.8542581 0.4271481 0.57362356 0.42750780
## 728   0.427867746 0.5728900 0.8542581 0.4271481 0.57362356 0.42750780
## 976   0.427867746 0.5728900 0.8542581 0.4271481 0.57362356 0.42750780
## 678   0.429554656 0.5725191 0.8548813 0.4274004 0.57471264 0.42847615
## 1036  0.429554656 0.5725191 0.8548813 0.4274004 0.57471264 0.42847615
## 190   0.437246964 0.5757576 0.8571429 0.4329004 0.58015267 0.43506827
## 443   0.437246964 0.5757576 0.8571429 0.4329004 0.58015267 0.43506827
## 1143  0.437246964 0.5757576 0.8571429 0.4329004 0.58015267 0.43506827
## 734   0.434615385 0.5714286 0.8567639 0.4281925 0.57794677 0.43139199
## 1350  0.434615385 0.5714286 0.8567639 0.4281925 0.57794677 0.43139199
## 1430  0.434615385 0.5714286 0.8567639 0.4281925 0.57794677 0.43139199
## 207   0.431106613 0.5657568 0.8562555 0.4220124 0.57503153 0.42653525
## 241   0.431106613 0.5657568 0.8562555 0.4220124 0.57503153 0.42653525
## 726   0.431106613 0.5657568 0.8562555 0.4220124 0.57503153 0.42653525
## 1214  0.431106613 0.5657568 0.8562555 0.4220124 0.57503153 0.42653525
## 78    0.433603239 0.5637255 0.8573975 0.4211230 0.57644110 0.42731756
## 606   0.433603239 0.5637255 0.8573975 0.4211230 0.57644110 0.42731756
## 894   0.433603239 0.5637255 0.8573975 0.4211230 0.57644110 0.42731756
## 1102  0.433603239 0.5637255 0.8573975 0.4211230 0.57644110 0.42731756
## 1467  0.433603239 0.5637255 0.8573975 0.4211230 0.57644110 0.42731756
## 650   0.433535762 0.5606796 0.8577818 0.4184614 0.57605985 0.42593188
## 689   0.433535762 0.5606796 0.8577818 0.4184614 0.57605985 0.42593188
## 798   0.433535762 0.5606796 0.8577818 0.4184614 0.57605985 0.42593188
## 1207  0.433535762 0.5606796 0.8577818 0.4184614 0.57605985 0.42593188
## 239   0.432591093 0.5563549 0.8580413 0.4143962 0.57496902 0.42339594
## 506   0.432591093 0.5563549 0.8580413 0.4143962 0.57496902 0.42339594
## 781   0.432591093 0.5563549 0.8580413 0.4143962 0.57496902 0.42339594
## 1072  0.432591093 0.5563549 0.8580413 0.4143962 0.57496902 0.42339594
## 1279  0.432591093 0.5563549 0.8580413 0.4143962 0.57496902 0.42339594
## 191   0.436842105 0.5571429 0.8594595 0.4166023 0.57777778 0.42660220
## 261   0.436842105 0.5571429 0.8594595 0.4166023 0.57777778 0.42660220
## 1075  0.436842105 0.5571429 0.8594595 0.4166023 0.57777778 0.42660220
## 618   0.435964912 0.5558195 0.8593327 0.4151522 0.57706535 0.42543131
## 301   0.435020243 0.5516432 0.8596014 0.4112446 0.57598039 0.42296542
## 540   0.435020243 0.5516432 0.8596014 0.4112446 0.57598039 0.42296542
## 677   0.435020243 0.5516432 0.8596014 0.4112446 0.57598039 0.42296542
## 1218  0.435020243 0.5516432 0.8596014 0.4112446 0.57598039 0.42296542
## 1278  0.435020243 0.5516432 0.8596014 0.4112446 0.57598039 0.42296542
## 245   0.437516869 0.5498840 0.8607825 0.4106665 0.57734470 0.42387915
## 544   0.437516869 0.5498840 0.8607825 0.4106665 0.57734470 0.42387915
## 604   0.437516869 0.5498840 0.8607825 0.4106665 0.57734470 0.42387915
## 779   0.437516869 0.5498840 0.8607825 0.4106665 0.57734470 0.42387915
## 1248  0.437516869 0.5498840 0.8607825 0.4106665 0.57734470 0.42387915
## 774   0.434885290 0.5460829 0.8604015 0.4064844 0.57524272 0.42044511
## 875   0.434885290 0.5460829 0.8604015 0.4064844 0.57524272 0.42044511
## 1371  0.434885290 0.5460829 0.8604015 0.4064844 0.57524272 0.42044511
## 879   0.437449393 0.5471264 0.8611872 0.4083137 0.57696970 0.42263052
## 189   0.441700405 0.5479452 0.8626374 0.4105826 0.57971014 0.42585735
## 395   0.441700405 0.5479452 0.8626374 0.4105826 0.57971014 0.42585735
## 676   0.441700405 0.5479452 0.8626374 0.4105826 0.57971014 0.42585735
## 683   0.445074224 0.5475113 0.8639706 0.4114819 0.58173077 0.42794858
## 729   0.445074224 0.5475113 0.8639706 0.4114819 0.58173077 0.42794858
## 862   0.445074224 0.5475113 0.8639706 0.4114819 0.58173077 0.42794858
## 993   0.445074224 0.5475113 0.8639706 0.4114819 0.58173077 0.42794858
## 1     0.443319838 0.5450450 0.8637201 0.4087651 0.58033573 0.42569201
## 1436  0.443319838 0.5450450 0.8637201 0.4087651 0.58033573 0.42569201
## 382   0.441565452 0.5426009 0.8634686 0.4060695 0.57894737 0.42344572
## 797   0.441565452 0.5426009 0.8634686 0.4060695 0.57894737 0.42344572
## 661   0.443252362 0.5424107 0.8641405 0.4065512 0.57995227 0.42450533
## 1120  0.443252362 0.5424107 0.8641405 0.4065512 0.57995227 0.42450533
## 195   0.444939271 0.5422222 0.8648148 0.4070370 0.58095238 0.42556640
## 385   0.444939271 0.5422222 0.8648148 0.4070370 0.58095238 0.42556640
## 30    0.444062078 0.5410200 0.8646895 0.4057095 0.58026159 0.42445282
## 97    0.445748988 0.5408389 0.8653668 0.4062056 0.58125741 0.42551820
## 908   0.445748988 0.5408389 0.8653668 0.4062056 0.58125741 0.42551820
## 1195  0.448313090 0.5418502 0.8661710 0.4080212 0.58293839 0.42769295
## 470   0.449055331 0.5379610 0.8671656 0.4051265 0.58284371 0.42652576
## 592   0.449055331 0.5379610 0.8671656 0.4051265 0.58284371 0.42652576
## 727   0.449055331 0.5379610 0.8671656 0.4051265 0.58284371 0.42652576
## 912   0.449055331 0.5379610 0.8671656 0.4051265 0.58284371 0.42652576
## 1088  0.449055331 0.5379610 0.8671656 0.4051265 0.58284371 0.42652576
## 1273  0.449055331 0.5379610 0.8671656 0.4051265 0.58284371 0.42652576
## 1373  0.449055331 0.5379610 0.8671656 0.4051265 0.58284371 0.42652576
## 13    0.450742240 0.5377970 0.8678538 0.4056508 0.58382181 0.42760255
## 1330  0.450742240 0.5377970 0.8678538 0.4056508 0.58382181 0.42760255
## 174   0.452429150 0.5376344 0.8685446 0.4061790 0.58479532 0.42868079
## 900   0.452429150 0.5376344 0.8685446 0.4061790 0.58479532 0.42868079
## 904   0.454993252 0.5386266 0.8693609 0.4079875 0.58644860 0.43084982
## 513   0.458367072 0.5382979 0.8707547 0.4090526 0.58837209 0.43300836
## 1216  0.458367072 0.5382979 0.8707547 0.4090526 0.58837209 0.43300836
## 1402  0.458367072 0.5382979 0.8707547 0.4090526 0.58837209 0.43300836
## 1484  0.458367072 0.5382979 0.8707547 0.4090526 0.58837209 0.43300836
## 914   0.456612686 0.5360169 0.8705104 0.4065273 0.58700696 0.43084283
## 1151  0.456612686 0.5360169 0.8705104 0.4065273 0.58700696 0.43084283
## 149   0.455735493 0.5348837 0.8703879 0.4052716 0.58632677 0.42976349
## 724   0.453981107 0.5326316 0.8701422 0.4027738 0.58497110 0.42761160
## 1077  0.453981107 0.5326316 0.8701422 0.4027738 0.58497110 0.42761160
## 336   0.453036437 0.5291667 0.8704762 0.3996429 0.58390805 0.42550297
## 949   0.453036437 0.5291667 0.8704762 0.3996429 0.58390805 0.42550297
## 1035  0.453036437 0.5291667 0.8704762 0.3996429 0.58390805 0.42550297
## 1047  0.453036437 0.5291667 0.8704762 0.3996429 0.58390805 0.42550297
## 1448  0.453036437 0.5291667 0.8704762 0.3996429 0.58390805 0.42550297
## 221   0.452159244 0.5280665 0.8703527 0.3984192 0.58323766 0.42443957
## 138   0.448650472 0.5237113 0.8698565 0.3935678 0.58057143 0.42020754
## 226   0.448650472 0.5237113 0.8698565 0.3935678 0.58057143 0.42020754
## 535   0.448650472 0.5237113 0.8698565 0.3935678 0.58057143 0.42020754
## 665   0.448650472 0.5237113 0.8698565 0.3935678 0.58057143 0.42020754
## 270   0.449460189 0.5225410 0.8704415 0.3929824 0.58086560 0.42027368
## 457   0.449460189 0.5225410 0.8704415 0.3929824 0.58086560 0.42027368
## 1450  0.449460189 0.5225410 0.8704415 0.3929824 0.58086560 0.42027368
## 11    0.446828610 0.5193483 0.8700674 0.3894156 0.57888763 0.41713553
## 76    0.446828610 0.5193483 0.8700674 0.3894156 0.57888763 0.41713553
## 228   0.446828610 0.5193483 0.8700674 0.3894156 0.57888763 0.41713553
## 1181  0.448515520 0.5192698 0.8707811 0.3900509 0.57984145 0.41826292
## 1238  0.448515520 0.5192698 0.8707811 0.3900509 0.57984145 0.41826292
## 291   0.448448043 0.5171026 0.8712488 0.3883514 0.57948140 0.41731934
## 899   0.448448043 0.5171026 0.8712488 0.3883514 0.57948140 0.41731934
## 932   0.448448043 0.5171026 0.8712488 0.3883514 0.57948140 0.41731934
## 969   0.448448043 0.5171026 0.8712488 0.3883514 0.57948140 0.41731934
## 257   0.446693657 0.5150301 0.8709990 0.3860291 0.57817773 0.41525504
## 948   0.446693657 0.5150301 0.8709990 0.3860291 0.57817773 0.41525504
## 6     0.447503374 0.5139442 0.8715953 0.3855396 0.57847534 0.41536761
## 1063  0.447503374 0.5139442 0.8715953 0.3855396 0.57847534 0.41536761
## 1329  0.447503374 0.5139442 0.8715953 0.3855396 0.57847534 0.41536761
## 120   0.449190283 0.5138889 0.8723197 0.3862086 0.57941834 0.41651067
## 640   0.449190283 0.5138889 0.8723197 0.3862086 0.57941834 0.41651067
## 38    0.447435897 0.5118577 0.8720703 0.3839280 0.57812500 0.41446734
## 546   0.447435897 0.5118577 0.8720703 0.3839280 0.57812500 0.41446734
## 1408  0.452564103 0.5137795 0.8737769 0.3875564 0.58129176 0.41880082
## 1487  0.452564103 0.5137795 0.8737769 0.3875564 0.58129176 0.41880082
## 68    0.448178138 0.5087719 0.8731563 0.3819283 0.57807309 0.41372926
## 278   0.448178138 0.5087719 0.8731563 0.3819283 0.57807309 0.41372926
## 776   0.448178138 0.5087719 0.8731563 0.3819283 0.57807309 0.41372926
## 1192  0.448178138 0.5087719 0.8731563 0.3819283 0.57807309 0.41372926
## 1396  0.448178138 0.5087719 0.8731563 0.3819283 0.57807309 0.41372926
## 1006  0.449865047 0.5087379 0.8738916 0.3826295 0.57900552 0.41488749
## 1417  0.449865047 0.5087379 0.8738916 0.3826295 0.57900552 0.41488749
## 25    0.448920378 0.5057692 0.8742574 0.3800267 0.57802198 0.41303960
## 155   0.448920378 0.5057692 0.8742574 0.3800267 0.57802198 0.41303960
## 847   0.448920378 0.5057692 0.8742574 0.3800267 0.57802198 0.41303960
## 956   0.448920378 0.5057692 0.8742574 0.3800267 0.57802198 0.41303960
## 1461  0.448920378 0.5057692 0.8742574 0.3800267 0.57802198 0.41303960
## 56    0.445411606 0.5019084 0.8737575 0.3756659 0.57549234 0.40905492
## 449   0.445411606 0.5019084 0.8737575 0.3756659 0.57549234 0.40905492
## 483   0.445411606 0.5019084 0.8737575 0.3756659 0.57549234 0.40905492
## 1422  0.445411606 0.5019084 0.8737575 0.3756659 0.57549234 0.40905492
## 19    0.442780027 0.4990512 0.8733799 0.3724311 0.57360960 0.40608503
## 187   0.442780027 0.4990512 0.8733799 0.3724311 0.57360960 0.40608503
## 1349  0.442780027 0.4990512 0.8733799 0.3724311 0.57360960 0.40608503
## 833   0.443589744 0.4981132 0.8740000 0.3721132 0.57391304 0.40628266
## 952   0.443589744 0.4981132 0.8740000 0.3721132 0.57391304 0.40628266
## 1211  0.443589744 0.4981132 0.8740000 0.3721132 0.57391304 0.40628266
## 346   0.445209177 0.4962687 0.8752515 0.3715202 0.57451404 0.40669914
## 434   0.445209177 0.4962687 0.8752515 0.3715202 0.57451404 0.40669914
## 913   0.445209177 0.4962687 0.8752515 0.3715202 0.57451404 0.40669914
## 1076  0.445209177 0.4962687 0.8752515 0.3715202 0.57451404 0.40669914
## 1242  0.445209177 0.4962687 0.8752515 0.3715202 0.57451404 0.40669914
## 1306  0.445209177 0.4962687 0.8752515 0.3715202 0.57451404 0.40669914
## 172   0.446018893 0.4953618 0.8758829 0.3712447 0.57481163 0.40691788
## 629   0.446018893 0.4953618 0.8758829 0.3712447 0.57481163 0.40691788
## 1193  0.446018893 0.4953618 0.8758829 0.3712447 0.57481163 0.40691788
## 584   0.451147099 0.4972274 0.8776542 0.3748816 0.57787325 0.41125020
## 1414  0.451147099 0.4972274 0.8776542 0.3748816 0.57787325 0.41125020
## 831   0.450202429 0.4945055 0.8780488 0.3725543 0.57692308 0.40954223
## 1024  0.450202429 0.4945055 0.8780488 0.3725543 0.57692308 0.40954223
## 1147  0.450202429 0.4945055 0.8780488 0.3725543 0.57692308 0.40954223
## 1148  0.450202429 0.4945055 0.8780488 0.3725543 0.57692308 0.40954223
## 1263  0.450202429 0.4945055 0.8780488 0.3725543 0.57692308 0.40954223
## 283   0.450134953 0.4927273 0.8785714 0.3712987 0.57659574 0.40882089
## 714   0.450134953 0.4927273 0.8785714 0.3712987 0.57659574 0.40882089
## 1302  0.450134953 0.4927273 0.8785714 0.3712987 0.57659574 0.40882089
## 1419  0.450134953 0.4927273 0.8785714 0.3712987 0.57659574 0.40882089
## 920   0.450944669 0.4918626 0.8792221 0.3710847 0.57688229 0.40907048
## 971   0.450944669 0.4918626 0.8792221 0.3710847 0.57688229 0.40907048
## 1026  0.450944669 0.4918626 0.8792221 0.3710847 0.57688229 0.40907048
## 696   0.449190283 0.4900901 0.8789744 0.3690644 0.57566138 0.40716110
## 1172  0.449190283 0.4900901 0.8789744 0.3690644 0.57566138 0.40716110
## 95    0.450000000 0.4892473 0.8796296 0.3688769 0.57594937 0.40742438
## 694   0.450000000 0.4892473 0.8796296 0.3688769 0.57594937 0.40742438
## 1199  0.450000000 0.4892473 0.8796296 0.3688769 0.57594937 0.40742438
## 307   0.454251012 0.4901961 0.8813209 0.3715170 0.57833859 0.41080651
## 413   0.454251012 0.4901961 0.8813209 0.3715170 0.57833859 0.41080651
## 996   0.454251012 0.4901961 0.8813209 0.3715170 0.57833859 0.41080651
## 18    0.452429150 0.4867725 0.8816199 0.3683924 0.57680251 0.40825417
## 33    0.452429150 0.4867725 0.8816199 0.3683924 0.57680251 0.40825417
## 173   0.452429150 0.4867725 0.8816199 0.3683924 0.57680251 0.40825417
## 792   0.452429150 0.4867725 0.8816199 0.3683924 0.57680251 0.40825417
## 1209  0.452429150 0.4867725 0.8816199 0.3683924 0.57680251 0.40825417
## 1469  0.452429150 0.4867725 0.8816199 0.3683924 0.57680251 0.40825417
## 711   0.450674764 0.4850615 0.8813736 0.3664351 0.57559958 0.40637796
## 1356  0.450674764 0.4850615 0.8813736 0.3664351 0.57559958 0.40637796
## 49    0.449797571 0.4842105 0.8812500 0.3654605 0.57500000 0.40544205
## 304   0.453981107 0.4835355 0.8835257 0.3670612 0.57704240 0.40821424
## 347   0.453981107 0.4835355 0.8835257 0.3670612 0.57704240 0.40821424
## 394   0.453981107 0.4835355 0.8835257 0.3670612 0.57704240 0.40821424
## 412   0.453981107 0.4835355 0.8835257 0.3670612 0.57704240 0.40821424
## 666   0.453981107 0.4835355 0.8835257 0.3670612 0.57704240 0.40821424
## 829   0.453981107 0.4835355 0.8835257 0.3670612 0.57704240 0.40821424
## 1312  0.453981107 0.4835355 0.8835257 0.3670612 0.57704240 0.40821424
## 148   0.457354926 0.4836489 0.8851423 0.3687911 0.57878476 0.41069264
## 342   0.457354926 0.4836489 0.8851423 0.3687911 0.57878476 0.41069264
## 752   0.457354926 0.4836489 0.8851423 0.3687911 0.57878476 0.41069264
## 1108  0.457354926 0.4836489 0.8851423 0.3687911 0.57878476 0.41069264
## 268   0.458164642 0.4828767 0.8858351 0.3687118 0.57905544 0.41101182
## 626   0.458164642 0.4828767 0.8858351 0.3687118 0.57905544 0.41101182
## 802   0.458164642 0.4828767 0.8858351 0.3687118 0.57905544 0.41101182
## 369   0.460728745 0.4837607 0.8867725 0.3705332 0.58051282 0.41317706
## 159   0.457219973 0.4804754 0.8862912 0.3667666 0.57814096 0.40950335
## 697   0.457219973 0.4804754 0.8862912 0.3667666 0.57814096 0.40950335
## 730   0.457219973 0.4804754 0.8862912 0.3667666 0.57814096 0.40950335
## 1128  0.457219973 0.4804754 0.8862912 0.3667666 0.57814096 0.40950335
## 171   0.462348178 0.4822335 0.8881789 0.3704124 0.58103976 0.41383512
## 1048  0.462348178 0.4822335 0.8881789 0.3704124 0.58103976 0.41383512
## 20    0.460526316 0.4790620 0.8885316 0.3675936 0.57953394 0.41144444
## 595   0.460526316 0.4790620 0.8885316 0.3675936 0.57953394 0.41144444
## 911   0.460526316 0.4790620 0.8885316 0.3675936 0.57953394 0.41144444
## 1159  0.460526316 0.4790620 0.8885316 0.3675936 0.57953394 0.41144444
## 1235  0.460526316 0.4790620 0.8885316 0.3675936 0.57953394 0.41144444
## 1275  0.460526316 0.4790620 0.8885316 0.3675936 0.57953394 0.41144444
## 150   0.461268556 0.4768212 0.8898488 0.3666700 0.57947686 0.41125824
## 575   0.461268556 0.4768212 0.8898488 0.3666700 0.57947686 0.41125824
## 853   0.461268556 0.4768212 0.8898488 0.3666700 0.57947686 0.41125824
## 859   0.461268556 0.4768212 0.8898488 0.3666700 0.57947686 0.41125824
## 1009  0.461268556 0.4768212 0.8898488 0.3666700 0.57947686 0.41125824
## 1197  0.461268556 0.4768212 0.8898488 0.3666700 0.57947686 0.41125824
## 1296  0.461268556 0.4768212 0.8898488 0.3666700 0.57947686 0.41125824
## 628   0.462955466 0.4768977 0.8906926 0.3675903 0.58032129 0.41252631
## 995   0.462955466 0.4768977 0.8906926 0.3675903 0.58032129 0.41252631
## 34    0.459379217 0.4723127 0.8908297 0.3631424 0.57768924 0.40843613
## 325   0.459379217 0.4723127 0.8908297 0.3631424 0.57768924 0.40843613
## 562   0.459379217 0.4723127 0.8908297 0.3631424 0.57768924 0.40843613
## 652   0.459379217 0.4723127 0.8908297 0.3631424 0.57768924 0.40843613
## 877   0.459379217 0.4723127 0.8908297 0.3631424 0.57768924 0.40843613
## 1056  0.459379217 0.4723127 0.8908297 0.3631424 0.57768924 0.40843613
## 1169  0.459379217 0.4723127 0.8908297 0.3631424 0.57768924 0.40843613
## 1347  0.459379217 0.4723127 0.8908297 0.3631424 0.57768924 0.40843613
## 505   0.460188934 0.4716370 0.8915663 0.3632032 0.57795432 0.40883016
## 763   0.460188934 0.4716370 0.8915663 0.3632032 0.57795432 0.40883016
## 1213  0.460188934 0.4716370 0.8915663 0.3632032 0.57795432 0.40883016
## 94    0.459244265 0.4694534 0.8920705 0.3615239 0.57707510 0.40746504
## 219   0.459244265 0.4694534 0.8920705 0.3615239 0.57707510 0.40746504
## 923   0.459244265 0.4694534 0.8920705 0.3615239 0.57707510 0.40746504
## 955   0.459244265 0.4694534 0.8920705 0.3615239 0.57707510 0.40746504
## 970   0.459244265 0.4694534 0.8920705 0.3615239 0.57707510 0.40746504
## 164   0.459176788 0.4680511 0.8926991 0.3607502 0.57677165 0.40699894
## 813   0.459176788 0.4680511 0.8926991 0.3607502 0.57677165 0.40699894
## 1020  0.459176788 0.4680511 0.8926991 0.3607502 0.57677165 0.40699894
## 1144  0.459176788 0.4680511 0.8926991 0.3607502 0.57677165 0.40699894
## 123   0.462550607 0.4682540 0.8944444 0.3626984 0.57843137 0.40959293
## 973   0.462550607 0.4682540 0.8944444 0.3626984 0.57843137 0.40959293
## 1021  0.462550607 0.4682540 0.8944444 0.3626984 0.57843137 0.40959293
## 1336  0.462550607 0.4682540 0.8944444 0.3626984 0.57843137 0.40959293
## 474   0.462483131 0.4668770 0.8950893 0.3619663 0.57812500 0.40914947
## 608   0.462483131 0.4668770 0.8950893 0.3619663 0.57812500 0.40914947
## 990   0.462483131 0.4668770 0.8950893 0.3619663 0.57812500 0.40914947
## 1252  0.462483131 0.4668770 0.8950893 0.3619663 0.57812500 0.40914947
## 157   0.459851552 0.4646782 0.8947368 0.3594150 0.57643622 0.40654342
## 526   0.459851552 0.4646782 0.8947368 0.3594150 0.57643622 0.40654342
## 1089  0.459851552 0.4646782 0.8947368 0.3594150 0.57643622 0.40654342
## 105   0.457219973 0.4625000 0.8943820 0.3568820 0.57475728 0.40394751
## 393   0.457219973 0.4625000 0.8943820 0.3568820 0.57475728 0.40394751
## 1289  0.457219973 0.4625000 0.8943820 0.3568820 0.57475728 0.40394751
## 44    0.454588394 0.4603421 0.8940248 0.3543669 0.57308809 0.40136156
## 87    0.454588394 0.4603421 0.8940248 0.3543669 0.57308809 0.40136156
## 1224  0.454588394 0.4603421 0.8940248 0.3543669 0.57308809 0.40136156
## 282   0.451079622 0.4574961 0.8935447 0.3510409 0.57087753 0.39792887
## 735   0.451079622 0.4574961 0.8935447 0.3510409 0.57087753 0.39792887
## 778   0.451079622 0.4574961 0.8935447 0.3510409 0.57087753 0.39792887
## 793   0.451079622 0.4574961 0.8935447 0.3510409 0.57087753 0.39792887
## 599   0.448313090 0.4528875 0.8944954 0.3473830 0.56870229 0.39463442
## 616   0.448313090 0.4528875 0.8944954 0.3473830 0.56870229 0.39463442
## 780   0.448313090 0.4528875 0.8944954 0.3473830 0.56870229 0.39463442
## 809   0.448313090 0.4528875 0.8944954 0.3473830 0.56870229 0.39463442
## 815   0.448313090 0.4528875 0.8944954 0.3473830 0.56870229 0.39463442
## 917   0.448313090 0.4528875 0.8944954 0.3473830 0.56870229 0.39463442
## 940   0.448313090 0.4528875 0.8944954 0.3473830 0.56870229 0.39463442
## 1178  0.448313090 0.4528875 0.8944954 0.3473830 0.56870229 0.39463442
## 1272  0.448313090 0.4528875 0.8944954 0.3473830 0.56870229 0.39463442
## 1287  0.448313090 0.4528875 0.8944954 0.3473830 0.56870229 0.39463442
## 1303  0.448313090 0.4528875 0.8944954 0.3473830 0.56870229 0.39463442
## 279   0.450809717 0.4524887 0.8961938 0.3486825 0.56980057 0.39647124
## 493   0.450809717 0.4524887 0.8961938 0.3486825 0.56980057 0.39647124
## 542   0.450809717 0.4524887 0.8961938 0.3486825 0.56980057 0.39647124
## 874   0.450809717 0.4524887 0.8961938 0.3486825 0.56980057 0.39647124
## 1145  0.450809717 0.4524887 0.8961938 0.3486825 0.56980057 0.39647124
## 184   0.448178138 0.4504505 0.8958333 0.3462838 0.56818182 0.39395028
## 768   0.448178138 0.4504505 0.8958333 0.3462838 0.56818182 0.39395028
## 1420  0.448178138 0.4504505 0.8958333 0.3462838 0.56818182 0.39395028
## 153   0.444669366 0.4477612 0.8953488 0.3431100 0.56603774 0.39060276
## 384   0.444669366 0.4477612 0.8953488 0.3431100 0.56603774 0.39060276
## 872   0.444669366 0.4477612 0.8953488 0.3431100 0.56603774 0.39060276
## 1317  0.444669366 0.4477612 0.8953488 0.3431100 0.56603774 0.39060276
## 220   0.443724696 0.4459259 0.8959064 0.3418324 0.56525822 0.38946047
## 319   0.443724696 0.4459259 0.8959064 0.3418324 0.56525822 0.38946047
## 707   0.443724696 0.4459259 0.8959064 0.3418324 0.56525822 0.38946047
## 865   0.443724696 0.4459259 0.8959064 0.3418324 0.56525822 0.38946047
## 1093  0.443724696 0.4459259 0.8959064 0.3418324 0.56525822 0.38946047
## 747   0.444534413 0.4454277 0.8967136 0.3421413 0.56554307 0.38999180
## 1208  0.444534413 0.4454277 0.8967136 0.3421413 0.56554307 0.38999180
## 1505  0.444534413 0.4454277 0.8967136 0.3421413 0.56554307 0.38999180
## 517   0.441025641 0.4428152 0.8962264 0.3390417 0.56343284 0.38668601
## 561   0.441025641 0.4428152 0.8962264 0.3390417 0.56343284 0.38668601
## 767   0.441025641 0.4428152 0.8962264 0.3390417 0.56343284 0.38668601
## 1129  0.441025641 0.4428152 0.8962264 0.3390417 0.56343284 0.38668601
## 224   0.442712551 0.4429825 0.8971631 0.3401456 0.56424581 0.38805504
## 1194  0.442712551 0.4429825 0.8971631 0.3401456 0.56424581 0.38805504
## 133   0.440890688 0.4405797 0.8976190 0.3381988 0.56296296 0.38614593
## 145   0.440890688 0.4405797 0.8976190 0.3381988 0.56296296 0.38614593
## 569   0.440890688 0.4405797 0.8976190 0.3381988 0.56296296 0.38614593
## 777   0.440890688 0.4405797 0.8976190 0.3381988 0.56296296 0.38614593
## 926   0.440890688 0.4405797 0.8976190 0.3381988 0.56296296 0.38614593
## 1043  0.440890688 0.4405797 0.8976190 0.3381988 0.56296296 0.38614593
## 27    0.436504723 0.4374101 0.8970060 0.3344161 0.56036866 0.38206569
## 63    0.436504723 0.4374101 0.8970060 0.3344161 0.56036866 0.38206569
## 326   0.436504723 0.4374101 0.8970060 0.3344161 0.56036866 0.38206569
## 1397  0.436504723 0.4374101 0.8970060 0.3344161 0.56036866 0.38206569
## 1512  0.436504723 0.4374101 0.8970060 0.3344161 0.56036866 0.38206569
## 495   0.438124157 0.4365193 0.8986731 0.3351924 0.56095325 0.38321778
## 639   0.438124157 0.4365193 0.8986731 0.3351924 0.56095325 0.38321778
## 1098  0.438124157 0.4365193 0.8986731 0.3351924 0.56095325 0.38321778
## 1133  0.438124157 0.4365193 0.8986731 0.3351924 0.56095325 0.38321778
## 1164  0.438124157 0.4365193 0.8986731 0.3351924 0.56095325 0.38321778
## 1304  0.438124157 0.4365193 0.8986731 0.3351924 0.56095325 0.38321778
## 32    0.437179487 0.4348442 0.8992718 0.3341160 0.56021898 0.38218932
## 225   0.437179487 0.4348442 0.8992718 0.3341160 0.56021898 0.38218932
## 739   0.437179487 0.4348442 0.8992718 0.3341160 0.56021898 0.38218932
## 766   0.437179487 0.4348442 0.8992718 0.3341160 0.56021898 0.38218932
## 1067  0.437179487 0.4348442 0.8992718 0.3341160 0.56021898 0.38218932
## 297   0.436234818 0.4331927 0.8998779 0.3330706 0.55949137 0.38117842
## 380   0.436234818 0.4331927 0.8998779 0.3330706 0.55949137 0.38117842
## 602   0.436234818 0.4331927 0.8998779 0.3330706 0.55949137 0.38117842
## 871   0.436234818 0.4331927 0.8998779 0.3330706 0.55949137 0.38117842
## 1123  0.436234818 0.4331927 0.8998779 0.3330706 0.55949137 0.38117842
## 271   0.437044534 0.4327731 0.9007353 0.3335084 0.55978261 0.38178269
## 1233  0.437044534 0.4327731 0.9007353 0.3335084 0.55978261 0.38178269
## 1244  0.437044534 0.4327731 0.9007353 0.3335084 0.55978261 0.38178269
## 218   0.431781377 0.4291667 0.9000000 0.3291667 0.55675676 0.37699872
## 958   0.431781377 0.4291667 0.9000000 0.3291667 0.55675676 0.37699872
## 984   0.431781377 0.4291667 0.9000000 0.3291667 0.55675676 0.37699872
## 1042  0.431781377 0.4291667 0.9000000 0.3291667 0.55675676 0.37699872
## 1060  0.431781377 0.4291667 0.9000000 0.3291667 0.55675676 0.37699872
## 1391  0.431781377 0.4291667 0.9000000 0.3291667 0.55675676 0.37699872
## 112   0.432591093 0.4287690 0.9008674 0.3296364 0.55705301 0.37762122
## 262   0.432591093 0.4287690 0.9008674 0.3296364 0.55705301 0.37762122
## 882   0.432591093 0.4287690 0.9008674 0.3296364 0.55705301 0.37762122
## 624   0.431713900 0.4281768 0.9007444 0.3289212 0.55655296 0.37682869
## 17    0.429082321 0.4264099 0.9003736 0.3267835 0.55505819 0.37445564
## 280   0.429082321 0.4264099 0.9003736 0.3267835 0.55505819 0.37445564
## 712   0.429082321 0.4264099 0.9003736 0.3267835 0.55505819 0.37445564
## 165   0.428947368 0.4244898 0.9018868 0.3263766 0.55466667 0.37416357
## 246   0.428947368 0.4244898 0.9018868 0.3263766 0.55466667 0.37416357
## 341   0.428947368 0.4244898 0.9018868 0.3263766 0.55466667 0.37416357
## 760   0.428947368 0.4244898 0.9018868 0.3263766 0.55466667 0.37416357
## 794   0.428947368 0.4244898 0.9018868 0.3263766 0.55466667 0.37416357
## 822   0.428947368 0.4244898 0.9018868 0.3263766 0.55466667 0.37416357
## 863   0.428947368 0.4244898 0.9018868 0.3263766 0.55466667 0.37416357
## 1285  0.428947368 0.4244898 0.9018868 0.3263766 0.55466667 0.37416357
## 186   0.423684211 0.4210526 0.9011407 0.3221933 0.55172414 0.36947019
## 198   0.423684211 0.4210526 0.9011407 0.3221933 0.55172414 0.36947019
## 333   0.423684211 0.4210526 0.9011407 0.3221933 0.55172414 0.36947019
## 1033  0.423684211 0.4210526 0.9011407 0.3221933 0.55172414 0.36947019
## 1479  0.423684211 0.4210526 0.9011407 0.3221933 0.55172414 0.36947019
## 1495  0.423684211 0.4210526 0.9011407 0.3221933 0.55172414 0.36947019
## 292   0.421052632 0.4193548 0.9007634 0.3201182 0.55026455 0.36713296
## 377   0.421052632 0.4193548 0.9007634 0.3201182 0.55026455 0.36713296
## 1366  0.421052632 0.4193548 0.9007634 0.3201182 0.55026455 0.36713296
## 4     0.420985155 0.4184492 0.9015345 0.3199837 0.55008787 0.36702643
## 1165  0.420985155 0.4184492 0.9015345 0.3199837 0.55008787 0.36702643
## 1298  0.420985155 0.4184492 0.9015345 0.3199837 0.55008787 0.36702643
## 1496  0.420985155 0.4184492 0.9015345 0.3199837 0.55008787 0.36702643
## 1105  0.420917679 0.4175532 0.9023136 0.3198668 0.54991243 0.36692996
## 1251  0.420917679 0.4175532 0.9023136 0.3198668 0.54991243 0.36692996
## 1486  0.420917679 0.4175532 0.9023136 0.3198668 0.54991243 0.36692996
## 1504  0.420917679 0.4175532 0.9023136 0.3198668 0.54991243 0.36692996
## 294   0.419163293 0.4164456 0.9020619 0.3185075 0.54895105 0.36538561
## 1046  0.419163293 0.4164456 0.9020619 0.3185075 0.54895105 0.36538561
## 73    0.418218623 0.4150198 0.9027237 0.3177435 0.54830287 0.36453566
## 438   0.418218623 0.4150198 0.9027237 0.3177435 0.54830287 0.36453566
## 930   0.418218623 0.4150198 0.9027237 0.3177435 0.54830287 0.36453566
## 1274  0.418218623 0.4150198 0.9027237 0.3177435 0.54830287 0.36453566
## 1352  0.418218623 0.4150198 0.9027237 0.3177435 0.54830287 0.36453566
## 548   0.416464238 0.4139290 0.9024707 0.3163998 0.54735013 0.36300027
## 1112  0.416464238 0.4139290 0.9024707 0.3163998 0.54735013 0.36300027
## 7     0.419838057 0.4143791 0.9045752 0.3189542 0.54891775 0.36593597
## 335   0.419838057 0.4143791 0.9045752 0.3189542 0.54891775 0.36593597
## 817   0.419838057 0.4143791 0.9045752 0.3189542 0.54891775 0.36593597
## 1141  0.419838057 0.4143791 0.9045752 0.3189542 0.54891775 0.36593597
## 525   0.420647773 0.4140625 0.9055118 0.3195743 0.54922280 0.36664454
## 1410  0.420647773 0.4140625 0.9055118 0.3195743 0.54922280 0.36664454
## 1507  0.420647773 0.4140625 0.9055118 0.3195743 0.54922280 0.36664454
## 1292  0.419770580 0.4135241 0.9053876 0.3189117 0.54874892 0.36588216
## 128   0.418893387 0.4129870 0.9052632 0.3182502 0.54827586 0.36512038
## 323   0.422267206 0.4134367 0.9074074 0.3208441 0.54982818 0.36807872
## 359   0.422267206 0.4134367 0.9074074 0.3208441 0.54982818 0.36807872
## 514   0.422267206 0.4134367 0.9074074 0.3208441 0.54982818 0.36807872
## 864   0.422267206 0.4134367 0.9074074 0.3208441 0.54982818 0.36807872
## 99    0.428205128 0.4146341 0.9107856 0.3254198 0.55260907 0.37329132
## 605   0.428205128 0.4146341 0.9107856 0.3254198 0.55260907 0.37329132
## 905   0.428205128 0.4146341 0.9107856 0.3254198 0.55260907 0.37329132
## 1246  0.428205128 0.4146341 0.9107856 0.3254198 0.55260907 0.37329132
## 1260  0.428205128 0.4146341 0.9107856 0.3254198 0.55260907 0.37329132
## 367   0.434143050 0.4158163 0.9142091 0.3300254 0.55536627 0.37852114
## 416   0.434143050 0.4158163 0.9142091 0.3300254 0.55536627 0.37852114
## 440   0.434143050 0.4158163 0.9142091 0.3300254 0.55536627 0.37852114
## 663   0.434143050 0.4158163 0.9142091 0.3300254 0.55536627 0.37852114
## 1106  0.434143050 0.4158163 0.9142091 0.3300254 0.55536627 0.37852114
## 14    0.433198381 0.4144487 0.9149798 0.3294284 0.55470738 0.37776694
## 131   0.433198381 0.4144487 0.9149798 0.3294284 0.55470738 0.37776694
## 611   0.433198381 0.4144487 0.9149798 0.3294284 0.55470738 0.37776694
## 1034  0.433198381 0.4144487 0.9149798 0.3294284 0.55470738 0.37776694
## 1390  0.433198381 0.4144487 0.9149798 0.3294284 0.55470738 0.37776694
## 255   0.433130904 0.4136192 0.9158752 0.3294943 0.55452240 0.37777530
## 550   0.433130904 0.4136192 0.9158752 0.3294943 0.55452240 0.37777530
## 1086  0.433130904 0.4136192 0.9158752 0.3294943 0.55452240 0.37777530
## 1163  0.433130904 0.4136192 0.9158752 0.3294943 0.55452240 0.37777530
## 154   0.433063428 0.4127980 0.9167804 0.3295783 0.55433867 0.37779403
## 609   0.433063428 0.4127980 0.9167804 0.3295783 0.55433867 0.37779403
## 1013  0.433063428 0.4127980 0.9167804 0.3295783 0.55433867 0.37779403
## 1431  0.433063428 0.4127980 0.9167804 0.3295783 0.55433867 0.37779403
## 227   0.436437247 0.4132335 0.9190672 0.3323007 0.55583543 0.38082593
## 516   0.436437247 0.4132335 0.9190672 0.3323007 0.55583543 0.38082593
## 740   0.436437247 0.4132335 0.9190672 0.3323007 0.55583543 0.38082593
## 895   0.436437247 0.4132335 0.9190672 0.3323007 0.55583543 0.38082593
## 223   0.436369771 0.4124224 0.9200000 0.3324224 0.55564854 0.38086621
## 1022  0.436369771 0.4124224 0.9200000 0.3324224 0.55564854 0.38086621
## 1153  0.436369771 0.4124224 0.9200000 0.3324224 0.55564854 0.38086621
## 1344  0.436369771 0.4124224 0.9200000 0.3324224 0.55564854 0.38086621
## 43    0.431106613 0.4093711 0.9193324 0.3287036 0.55287261 0.37643894
## 424   0.431106613 0.4093711 0.9193324 0.3287036 0.55287261 0.37643894
## 484   0.431106613 0.4093711 0.9193324 0.3287036 0.55287261 0.37643894
## 491   0.431106613 0.4093711 0.9193324 0.3287036 0.55287261 0.37643894
## 1261  0.431106613 0.4093711 0.9193324 0.3287036 0.55287261 0.37643894
## 1321  0.431106613 0.4093711 0.9193324 0.3287036 0.55287261 0.37643894
## 182   0.431848853 0.4083130 0.9213483 0.3296613 0.55298013 0.37731133
## 206   0.431848853 0.4083130 0.9213483 0.3296613 0.55298013 0.37731133
## 568   0.431848853 0.4083130 0.9213483 0.3296613 0.55298013 0.37731133
## 590   0.431848853 0.4083130 0.9213483 0.3296613 0.55298013 0.37731133
## 1382  0.431848853 0.4083130 0.9213483 0.3296613 0.55298013 0.37731133
## 1489  0.431848853 0.4083130 0.9213483 0.3296613 0.55298013 0.37731133
## 1521  0.431848853 0.4083130 0.9213483 0.3296613 0.55298013 0.37731133
## 534   0.430094467 0.4073171 0.9211268 0.3284438 0.55206612 0.37584821
## 1434  0.430094467 0.4073171 0.9211268 0.3284438 0.55206612 0.37584821
## 126   0.428272605 0.4055690 0.9218750 0.3274440 0.55098684 0.37448004
## 137   0.428272605 0.4055690 0.9218750 0.3274440 0.55098684 0.37448004
## 497   0.428272605 0.4055690 0.9218750 0.3274440 0.55098684 0.37448004
## 886   0.428272605 0.4055690 0.9218750 0.3274440 0.55098684 0.37448004
## 1166  0.428272605 0.4055690 0.9218750 0.3274440 0.55098684 0.37448004
## 1215  0.428272605 0.4055690 0.9218750 0.3274440 0.55098684 0.37448004
## 741   0.425641026 0.4041013 0.9215407 0.3256420 0.54963084 0.37229906
## 1175  0.425641026 0.4041013 0.9215407 0.3256420 0.54963084 0.37229906
## 1348  0.425641026 0.4041013 0.9215407 0.3256420 0.54963084 0.37229906
## 143   0.422132254 0.4021609 0.9210904 0.3232513 0.54783320 0.36939786
## 691   0.422132254 0.4021609 0.9210904 0.3232513 0.54783320 0.36939786
## 1018  0.422132254 0.4021609 0.9210904 0.3232513 0.54783320 0.36939786
## 1318  0.422132254 0.4021609 0.9210904 0.3232513 0.54783320 0.36939786
## 64    0.419433198 0.4000000 0.9217391 0.3217391 0.54634146 0.36735279
## 69    0.419433198 0.4000000 0.9217391 0.3217391 0.54634146 0.36735279
## 466   0.419433198 0.4000000 0.9217391 0.3217391 0.54634146 0.36735279
## 589   0.419433198 0.4000000 0.9217391 0.3217391 0.54634146 0.36735279
## 873   0.419433198 0.4000000 0.9217391 0.3217391 0.54634146 0.36735279
## 1069  0.419433198 0.4000000 0.9217391 0.3217391 0.54634146 0.36735279
## 1146  0.419433198 0.4000000 0.9217391 0.3217391 0.54634146 0.36735279
## 651   0.422807018 0.4004739 0.9241983 0.3246722 0.54781199 0.37050463
## 857   0.422807018 0.4004739 0.9241983 0.3246722 0.54781199 0.37050463
## 1000  0.422807018 0.4004739 0.9241983 0.3246722 0.54781199 0.37050463
## 1491  0.422807018 0.4004739 0.9241983 0.3246722 0.54781199 0.37050463
## 139   0.423616734 0.4002361 0.9253294 0.3255656 0.54810024 0.37136911
## 654   0.423616734 0.4002361 0.9253294 0.3255656 0.54810024 0.37136911
## 841   0.423616734 0.4002361 0.9253294 0.3255656 0.54810024 0.37136911
## 160   0.418353576 0.3974209 0.9246677 0.3220885 0.54545455 0.36707885
## 290   0.418353576 0.3974209 0.9246677 0.3220885 0.54545455 0.36707885
## 521   0.418353576 0.3974209 0.9246677 0.3220885 0.54545455 0.36707885
## 892   0.418353576 0.3974209 0.9246677 0.3220885 0.54545455 0.36707885
## 1226  0.418353576 0.3974209 0.9246677 0.3220885 0.54545455 0.36707885
## 1364  0.418353576 0.3974209 0.9246677 0.3220885 0.54545455 0.36707885
## 212   0.418286100 0.3967328 0.9257058 0.3224386 0.54530874 0.36724866
## 266   0.418286100 0.3967328 0.9257058 0.3224386 0.54530874 0.36724866
## 405   0.418286100 0.3967328 0.9257058 0.3224386 0.54530874 0.36724866
## 765   0.418286100 0.3967328 0.9257058 0.3224386 0.54530874 0.36724866
## 317   0.414777328 0.3948897 0.9252616 0.3201512 0.54356515 0.36440565
## 1423  0.414777328 0.3948897 0.9252616 0.3201512 0.54356515 0.36440565
## 1432  0.414777328 0.3948897 0.9252616 0.3201512 0.54356515 0.36440565
## 1520  0.414777328 0.3948897 0.9252616 0.3201512 0.54356515 0.36440565
## 65    0.411201080 0.3924051 0.9258699 0.3182750 0.54169976 0.36176651
## 67    0.411201080 0.3924051 0.9258699 0.3182750 0.54169976 0.36176651
## 475   0.411201080 0.3924051 0.9258699 0.3182750 0.54169976 0.36176651
## 494   0.411201080 0.3924051 0.9258699 0.3182750 0.54169976 0.36176651
## 507   0.411201080 0.3924051 0.9258699 0.3182750 0.54169976 0.36176651
## 927   0.411201080 0.3924051 0.9258699 0.3182750 0.54169976 0.36176651
## 947   0.411201080 0.3924051 0.9258699 0.3182750 0.54169976 0.36176651
## 1117  0.411201080 0.3924051 0.9258699 0.3182750 0.54169976 0.36176651
## 300   0.412010796 0.3922018 0.9270517 0.3192535 0.54199683 0.36267877
## 509   0.412010796 0.3922018 0.9270517 0.3192535 0.54199683 0.36267877
## 642   0.412010796 0.3922018 0.9270517 0.3192535 0.54199683 0.36267877
## 508   0.413630229 0.3917995 0.9294479 0.3212474 0.54258675 0.36452385
## 855   0.413630229 0.3917995 0.9294479 0.3212474 0.54258675 0.36452385
## 1109  0.413630229 0.3917995 0.9294479 0.3212474 0.54258675 0.36452385
## 1201  0.413630229 0.3917995 0.9294479 0.3212474 0.54258675 0.36452385
## 1234  0.413630229 0.3917995 0.9294479 0.3212474 0.54258675 0.36452385
## 1424  0.413630229 0.3917995 0.9294479 0.3212474 0.54258675 0.36452385
## 435   0.415317139 0.3920455 0.9307692 0.3228147 0.54330709 0.36615635
## 810   0.415317139 0.3920455 0.9307692 0.3228147 0.54330709 0.36615635
## 487   0.412685560 0.3907135 0.9304482 0.3211617 0.54202671 0.36405878
## 1374  0.412685560 0.3907135 0.9304482 0.3211617 0.54202671 0.36405878
## 1518  0.412685560 0.3907135 0.9304482 0.3211617 0.54202671 0.36405878
## 21    0.406545209 0.3876404 0.9296875 0.3173279 0.53906250 0.35917706
## 144   0.406545209 0.3876404 0.9296875 0.3173279 0.53906250 0.35917706
## 193   0.406545209 0.3876404 0.9296875 0.3173279 0.53906250 0.35917706
## 320   0.406545209 0.3876404 0.9296875 0.3173279 0.53906250 0.35917706
## 473   0.406545209 0.3876404 0.9296875 0.3173279 0.53906250 0.35917706
## 1354  0.406545209 0.3876404 0.9296875 0.3173279 0.53906250 0.35917706
## 1456  0.406545209 0.3876404 0.9296875 0.3173279 0.53906250 0.35917706
## 74    0.402968961 0.3853007 0.9303797 0.3156804 0.53726708 0.35666428
## 284   0.402968961 0.3853007 0.9303797 0.3156804 0.53726708 0.35666428
## 527   0.402968961 0.3853007 0.9303797 0.3156804 0.53726708 0.35666428
## 620   0.402968961 0.3853007 0.9303797 0.3156804 0.53726708 0.35666428
## 1078  0.402968961 0.3853007 0.9303797 0.3156804 0.53726708 0.35666428
## 1142  0.402968961 0.3853007 0.9303797 0.3156804 0.53726708 0.35666428
## 1328  0.402968961 0.3853007 0.9303797 0.3156804 0.53726708 0.35666428
## 1363  0.402968961 0.3853007 0.9303797 0.3156804 0.53726708 0.35666428
## 242   0.401214575 0.3844444 0.9301587 0.3146032 0.53643411 0.35527930
## 1294  0.401214575 0.3844444 0.9301587 0.3146032 0.53643411 0.35527930
## 485   0.395951417 0.3818985 0.9294872 0.3113856 0.53395062 0.35113186
## 1003  0.395951417 0.3818985 0.9294872 0.3113856 0.53395062 0.35113186
## 1019  0.395951417 0.3818985 0.9294872 0.3113856 0.53395062 0.35113186
## 1160  0.395951417 0.3818985 0.9294872 0.3113856 0.53395062 0.35113186
## 1444  0.395951417 0.3818985 0.9294872 0.3113856 0.53395062 0.35113186
## 1477  0.395951417 0.3818985 0.9294872 0.3113856 0.53395062 0.35113186
## 75    0.391565452 0.3798024 0.9289176 0.3087200 0.53189854 0.34768390
## 231   0.391565452 0.3798024 0.9289176 0.3087200 0.53189854 0.34768390
## 243   0.391565452 0.3798024 0.9289176 0.3087200 0.53189854 0.34768390
## 593   0.391565452 0.3798024 0.9289176 0.3087200 0.53189854 0.34768390
## 1204  0.391565452 0.3798024 0.9289176 0.3087200 0.53189854 0.34768390
## 878   0.389811066 0.3789704 0.9286872 0.3076576 0.53108212 0.34630672
## 1189  0.389811066 0.3789704 0.9286872 0.3076576 0.53108212 0.34630672
## 417   0.396626181 0.3805889 0.9331158 0.3137047 0.53404744 0.35273715
## 638   0.396626181 0.3805889 0.9331158 0.3137047 0.53404744 0.35273715
## 1065  0.396626181 0.3805889 0.9331158 0.3137047 0.53404744 0.35273715
## 1091  0.396626181 0.3805889 0.9331158 0.3137047 0.53404744 0.35273715
## 482   0.396558704 0.3800217 0.9343186 0.3143403 0.53394355 0.35306426
## 708   0.396558704 0.3800217 0.9343186 0.3143403 0.53394355 0.35306426
## 748   0.396558704 0.3800217 0.9343186 0.3143403 0.53394355 0.35306426
## 1258  0.396558704 0.3800217 0.9343186 0.3143403 0.53394355 0.35306426
## 361   0.398245614 0.3802817 0.9357496 0.3160313 0.53465347 0.35476481
## 963   0.398245614 0.3802817 0.9357496 0.3160313 0.53465347 0.35476481
## 46    0.398110661 0.3791622 0.9382304 0.3173926 0.53444360 0.35546782
## 101   0.398110661 0.3791622 0.9382304 0.3173926 0.53444360 0.35546782
## 365   0.398110661 0.3791622 0.9382304 0.3173926 0.53444360 0.35546782
## 386   0.398110661 0.3791622 0.9382304 0.3173926 0.53444360 0.35546782
## 397   0.398110661 0.3791622 0.9382304 0.3173926 0.53444360 0.35546782
## 1040  0.398110661 0.3791622 0.9382304 0.3173926 0.53444360 0.35546782
## 1269  0.398110661 0.3791622 0.9382304 0.3173926 0.53444360 0.35546782
## 1359  0.398110661 0.3791622 0.9382304 0.3173926 0.53444360 0.35546782
## 519   0.408299595 0.3812567 0.9458545 0.3271111 0.53875094 0.36545772
## 820   0.408299595 0.3812567 0.9458545 0.3271111 0.53875094 0.36545772
## 824   0.408299595 0.3812567 0.9458545 0.3271111 0.53875094 0.36545772
## 851   0.408299595 0.3812567 0.9458545 0.3271111 0.53875094 0.36545772
## 1064  0.408299595 0.3812567 0.9458545 0.3271111 0.53875094 0.36545772
## 1179  0.408299595 0.3812567 0.9458545 0.3271111 0.53875094 0.36545772
## 1267  0.408299595 0.3812567 0.9458545 0.3271111 0.53875094 0.36545772
## 1307  0.408299595 0.3812567 0.9458545 0.3271111 0.53875094 0.36545772
## 208   0.404790823 0.3796394 0.9454855 0.3251250 0.53713428 0.36277762
## 215   0.404790823 0.3796394 0.9454855 0.3251250 0.53713428 0.36277762
## 234   0.404790823 0.3796394 0.9454855 0.3251250 0.53713428 0.36277762
## 812   0.404790823 0.3796394 0.9454855 0.3251250 0.53713428 0.36277762
## 430   0.397773279 0.3764458 0.9447323 0.3211781 0.53392990 0.35742983
## 459   0.397773279 0.3764458 0.9447323 0.3211781 0.53392990 0.35742983
## 531   0.397773279 0.3764458 0.9447323 0.3211781 0.53392990 0.35742983
## 867   0.397773279 0.3764458 0.9447323 0.3211781 0.53392990 0.35742983
## 1134  0.397773279 0.3764458 0.9447323 0.3211781 0.53392990 0.35742983
## 1219  0.397773279 0.3764458 0.9447323 0.3211781 0.53392990 0.35742983
## 1357  0.397773279 0.3764458 0.9447323 0.3211781 0.53392990 0.35742983
## 1453  0.397773279 0.3764458 0.9447323 0.3211781 0.53392990 0.35742983
## 348   0.398582996 0.3763103 0.9461806 0.3224908 0.53422619 0.35852386
## 978   0.398582996 0.3763103 0.9461806 0.3224908 0.53422619 0.35852386
## 1493  0.398582996 0.3763103 0.9461806 0.3224908 0.53422619 0.35852386
## 528   0.399392713 0.3761755 0.9476440 0.3238195 0.53452116 0.35962642
## 960   0.399392713 0.3761755 0.9476440 0.3238195 0.53452116 0.35962642
## 1237  0.399392713 0.3761755 0.9476440 0.3238195 0.53452116 0.35962642
## 372   0.400202429 0.3760417 0.9491228 0.3251645 0.53481481 0.36073759
## 1051  0.400202429 0.3760417 0.9491228 0.3251645 0.53481481 0.36073759
## 1470  0.400202429 0.3760417 0.9491228 0.3251645 0.53481481 0.36073759
## 158   0.394062078 0.3733195 0.9484902 0.3218098 0.53205601 0.35610817
## 675   0.394062078 0.3733195 0.9484902 0.3218098 0.53205601 0.35610817
## 786   0.394062078 0.3733195 0.9484902 0.3218098 0.53205601 0.35610817
## 787   0.394062078 0.3733195 0.9484902 0.3218098 0.53205601 0.35610817
## 937   0.394062078 0.3733195 0.9484902 0.3218098 0.53205601 0.35610817
## 1277  0.394062078 0.3733195 0.9484902 0.3218098 0.53205601 0.35610817
## 1319  0.394062078 0.3733195 0.9484902 0.3218098 0.53205601 0.35610817
## 669   0.392240216 0.3720452 0.9497307 0.3217759 0.53118122 0.35526533
## 964   0.392240216 0.3720452 0.9497307 0.3217759 0.53118122 0.35526533
## 974   0.392240216 0.3720452 0.9497307 0.3217759 0.53118122 0.35526533
## 997   0.392240216 0.3720452 0.9497307 0.3217759 0.53118122 0.35526533
## 1097  0.392240216 0.3720452 0.9497307 0.3217759 0.53118122 0.35526533
## 1457  0.392240216 0.3720452 0.9497307 0.3217759 0.53118122 0.35526533
## 12    0.384345479 0.3686354 0.9489051 0.3175405 0.52769679 0.34934979
## 60    0.384345479 0.3686354 0.9489051 0.3175405 0.52769679 0.34934979
## 202   0.384345479 0.3686354 0.9489051 0.3175405 0.52769679 0.34934979
## 214   0.384345479 0.3686354 0.9489051 0.3175405 0.52769679 0.34934979
## 471   0.384345479 0.3686354 0.9489051 0.3175405 0.52769679 0.34934979
## 522   0.384345479 0.3686354 0.9489051 0.3175405 0.52769679 0.34934979
## 799   0.384345479 0.3686354 0.9489051 0.3175405 0.52769679 0.34934979
## 928   0.384345479 0.3686354 0.9489051 0.3175405 0.52769679 0.34934979
## 1186  0.384345479 0.3686354 0.9489051 0.3175405 0.52769679 0.34934979
## 66    0.382591093 0.3678862 0.9487179 0.3166041 0.52692868 0.34803724
## 1012  0.382591093 0.3678862 0.9487179 0.3166041 0.52692868 0.34803724
## 597   0.379959514 0.3667680 0.9484346 0.3152026 0.52578068 0.34606969
## 738   0.379959514 0.3667680 0.9484346 0.3152026 0.52578068 0.34606969
## 972   0.379959514 0.3667680 0.9484346 0.3152026 0.52578068 0.34606969
## 381   0.375573549 0.3649194 0.9479554 0.3128747 0.52387844 0.34279364
## 490   0.375573549 0.3649194 0.9479554 0.3128747 0.52387844 0.34279364
## 961   0.375573549 0.3649194 0.9479554 0.3128747 0.52387844 0.34279364
## 1182  0.375573549 0.3649194 0.9479554 0.3128747 0.52387844 0.34279364
## 1501  0.375573549 0.3649194 0.9479554 0.3128747 0.52387844 0.34279364
## 444   0.373751687 0.3637275 0.9492481 0.3129756 0.52305476 0.34201630
## 545   0.373751687 0.3637275 0.9492481 0.3129756 0.52305476 0.34201630
## 658   0.373751687 0.3637275 0.9492481 0.3129756 0.52305476 0.34201630
## 695   0.373751687 0.3637275 0.9492481 0.3129756 0.52305476 0.34201630
## 745   0.373751687 0.3637275 0.9492481 0.3129756 0.52305476 0.34201630
## 876   0.373751687 0.3637275 0.9492481 0.3129756 0.52305476 0.34201630
## 237   0.370175439 0.3618290 0.9503817 0.3122107 0.52148997 0.33995990
## 311   0.370175439 0.3618290 0.9503817 0.3122107 0.52148997 0.33995990
## 422   0.370175439 0.3618290 0.9503817 0.3122107 0.52148997 0.33995990
## 456   0.370175439 0.3618290 0.9503817 0.3122107 0.52148997 0.33995990
## 1045  0.370175439 0.3618290 0.9503817 0.3122107 0.52148997 0.33995990
## 1177  0.370175439 0.3618290 0.9503817 0.3122107 0.52148997 0.33995990
## 1310  0.370175439 0.3618290 0.9503817 0.3122107 0.52148997 0.33995990
## 1511  0.370175439 0.3618290 0.9503817 0.3122107 0.52148997 0.33995990
## 469   0.372739541 0.3624628 0.9521989 0.3146616 0.52254832 0.34247164
## 349   0.366599190 0.3599606 0.9515504 0.3115109 0.51994302 0.33793440
## 479   0.366599190 0.3599606 0.9515504 0.3115109 0.51994302 0.33793440
## 637   0.366599190 0.3599606 0.9515504 0.3115109 0.51994302 0.33793440
## 935   0.366599190 0.3599606 0.9515504 0.3115109 0.51994302 0.33793440
## 1074  0.366599190 0.3599606 0.9515504 0.3115109 0.51994302 0.33793440
## 1116  0.366599190 0.3599606 0.9515504 0.3115109 0.51994302 0.33793440
## 1276  0.366599190 0.3599606 0.9515504 0.3115109 0.51994302 0.33793440
## 85    0.365654521 0.3591757 0.9530333 0.3122089 0.51951739 0.33787661
## 329   0.365654521 0.3591757 0.9530333 0.3122089 0.51951739 0.33787661
## 1196  0.365654521 0.3591757 0.9530333 0.3122089 0.51951739 0.33787661
## 1284  0.365654521 0.3591757 0.9530333 0.3122089 0.51951739 0.33787661
## 1290  0.365654521 0.3591757 0.9530333 0.3122089 0.51951739 0.33787661
## 396   0.363022942 0.3581213 0.9527559 0.3108772 0.51841360 0.33593983
## 426   0.363022942 0.3581213 0.9527559 0.3108772 0.51841360 0.33593983
## 563   0.363022942 0.3581213 0.9527559 0.3108772 0.51841360 0.33593983
## 142   0.361201080 0.3570039 0.9541833 0.3111872 0.51763047 0.33526279
## 644   0.361201080 0.3570039 0.9541833 0.3111872 0.51763047 0.33526279
## 659   0.361201080 0.3570039 0.9541833 0.3111872 0.51763047 0.33526279
## 690   0.361201080 0.3570039 0.9541833 0.3111872 0.51763047 0.33526279
## 692   0.361201080 0.3570039 0.9541833 0.3111872 0.51763047 0.33526279
## 791   0.361201080 0.3570039 0.9541833 0.3111872 0.51763047 0.33526279
## 296   0.359446694 0.3563107 0.9540000 0.3103107 0.51690141 0.33397627
## 305   0.359446694 0.3563107 0.9540000 0.3103107 0.51690141 0.33397627
## 58    0.357624831 0.3552124 0.9554656 0.3106779 0.51612903 0.33332589
## 811   0.357624831 0.3552124 0.9554656 0.3106779 0.51612903 0.33332589
## 1079  0.357624831 0.3552124 0.9554656 0.3106779 0.51612903 0.33332589
## 1083  0.357624831 0.3552124 0.9554656 0.3106779 0.51612903 0.33332589
## 1271  0.357624831 0.3552124 0.9554656 0.3106779 0.51612903 0.33332589
## 1377  0.357624831 0.3552124 0.9554656 0.3106779 0.51612903 0.33332589
## 532   0.355870445 0.3545279 0.9552846 0.3098125 0.51540616 0.33204384
## 631   0.355870445 0.3545279 0.9552846 0.3098125 0.51540616 0.33204384
## 115   0.357489879 0.3544061 0.9588477 0.3132539 0.51603905 0.33464173
## 177   0.357489879 0.3544061 0.9588477 0.3132539 0.51603905 0.33464173
## 289   0.357489879 0.3544061 0.9588477 0.3132539 0.51603905 0.33464173
## 303   0.357489879 0.3544061 0.9588477 0.3132539 0.51603905 0.33464173
## 1115  0.357489879 0.3544061 0.9588477 0.3132539 0.51603905 0.33464173
## 1472  0.357489879 0.3544061 0.9588477 0.3132539 0.51603905 0.33464173
## 129   0.354858300 0.3533906 0.9585921 0.3119828 0.51496173 0.33273064
## 251   0.354858300 0.3533906 0.9585921 0.3119828 0.51496173 0.33273064
## 1253  0.354858300 0.3533906 0.9585921 0.3119828 0.51496173 0.33273064
## 104   0.349595142 0.3513770 0.9580713 0.3094483 0.51282051 0.32890975
## 151   0.349595142 0.3513770 0.9580713 0.3094483 0.51282051 0.32890975
## 309   0.349595142 0.3513770 0.9580713 0.3094483 0.51282051 0.32890975
## 1127  0.349595142 0.3513770 0.9580713 0.3094483 0.51282051 0.32890975
## 1191  0.349595142 0.3513770 0.9580713 0.3094483 0.51282051 0.32890975
## 1522  0.349595142 0.3513770 0.9580713 0.3094483 0.51282051 0.32890975
## 210   0.346086370 0.3500473 0.9577167 0.3077640 0.51140290 0.32636318
## 1016  0.346086370 0.3500473 0.9577167 0.3077640 0.51140290 0.32636318
## 1030  0.346086370 0.3500473 0.9577167 0.3077640 0.51140290 0.32636318
## 1455  0.346086370 0.3500473 0.9577167 0.3077640 0.51140290 0.32636318
## 330   0.342577598 0.3487276 0.9573561 0.3060837 0.50999311 0.32381695
## 987   0.342577598 0.3487276 0.9573561 0.3060837 0.50999311 0.32381695
## 1365  0.342577598 0.3487276 0.9573561 0.3060837 0.50999311 0.32381695
## 1459  0.342577598 0.3487276 0.9573561 0.3060837 0.50999311 0.32381695
## 37    0.337314440 0.3467666 0.9568035 0.3035701 0.50789293 0.31999777
## 235   0.337314440 0.3467666 0.9568035 0.3035701 0.50789293 0.31999777
## 702   0.337314440 0.3467666 0.9568035 0.3035701 0.50789293 0.31999777
## 1113  0.337314440 0.3467666 0.9568035 0.3035701 0.50789293 0.31999777
## 1325  0.337314440 0.3467666 0.9568035 0.3035701 0.50789293 0.31999777
## 1451  0.337314440 0.3467666 0.9568035 0.3035701 0.50789293 0.31999777
## 247   0.329419703 0.3438662 0.9559471 0.2998133 0.50477490 0.31426806
## 375   0.329419703 0.3438662 0.9559471 0.2998133 0.50477490 0.31426806
## 452   0.329419703 0.3438662 0.9559471 0.2998133 0.50477490 0.31426806
## 758   0.329419703 0.3438662 0.9559471 0.2998133 0.50477490 0.31426806
## 954   0.329419703 0.3438662 0.9559471 0.2998133 0.50477490 0.31426806
## 1011  0.329419703 0.3438662 0.9559471 0.2998133 0.50477490 0.31426806
## 1264  0.329419703 0.3438662 0.9559471 0.2998133 0.50477490 0.31426806
## 1454  0.329419703 0.3438662 0.9559471 0.2998133 0.50477490 0.31426806
## 1509  0.329419703 0.3438662 0.9559471 0.2998133 0.50477490 0.31426806
## 72    0.323279352 0.3416436 0.9552573 0.2969009 0.50237610 0.30980948
## 250   0.323279352 0.3416436 0.9552573 0.2969009 0.50237610 0.30980948
## 322   0.323279352 0.3416436 0.9552573 0.2969009 0.50237610 0.30980948
## 425   0.323279352 0.3416436 0.9552573 0.2969009 0.50237610 0.30980948
## 1002  0.323279352 0.3416436 0.9552573 0.2969009 0.50237610 0.30980948
## 1266  0.323279352 0.3416436 0.9552573 0.2969009 0.50237610 0.30980948
## 1438  0.323279352 0.3416436 0.9552573 0.2969009 0.50237610 0.30980948
## 106   0.317139001 0.3394495 0.9545455 0.2939950 0.50000000 0.30534780
## 185   0.317139001 0.3394495 0.9545455 0.2939950 0.50000000 0.30534780
## 370   0.317139001 0.3394495 0.9545455 0.2939950 0.50000000 0.30534780
## 703   0.317139001 0.3394495 0.9545455 0.2939950 0.50000000 0.30534780
## 710   0.317139001 0.3394495 0.9545455 0.2939950 0.50000000 0.30534780
## 942   0.317139001 0.3394495 0.9545455 0.2939950 0.50000000 0.30534780
## 1301  0.317139001 0.3394495 0.9545455 0.2939950 0.50000000 0.30534780
## 51    0.317071525 0.3391225 0.9564220 0.2955445 0.50000000 0.30611884
## 1038  0.317071525 0.3391225 0.9564220 0.2955445 0.50000000 0.30611884
## 1379  0.317071525 0.3391225 0.9564220 0.2955445 0.50000000 0.30611884
## 1418  0.317071525 0.3391225 0.9564220 0.2955445 0.50000000 0.30611884
## 318   0.315249663 0.3381818 0.9581395 0.2963214 0.49932886 0.30563901
## 888   0.315249663 0.3381818 0.9581395 0.2963214 0.49932886 0.30563901
## 966   0.315249663 0.3381818 0.9581395 0.2963214 0.49932886 0.30563901
## 1031  0.315249663 0.3381818 0.9581395 0.2963214 0.49932886 0.30563901
## 1167  0.315249663 0.3381818 0.9581395 0.2963214 0.49932886 0.30563901
## 1433  0.315249663 0.3381818 0.9581395 0.2963214 0.49932886 0.30563901
## 240   0.309109312 0.3360434 0.9574468 0.2934902 0.49699399 0.30119851
## 488   0.309109312 0.3360434 0.9574468 0.2934902 0.49699399 0.30119851
## 770   0.309109312 0.3360434 0.9574468 0.2934902 0.49699399 0.30119851
## 909   0.309109312 0.3360434 0.9574468 0.2934902 0.49699399 0.30119851
## 959   0.309109312 0.3360434 0.9574468 0.2934902 0.49699399 0.30119851
## 1376  0.309109312 0.3360434 0.9574468 0.2934902 0.49699399 0.30119851
## 1502  0.309109312 0.3360434 0.9574468 0.2934902 0.49699399 0.30119851
## 26    0.305600540 0.3348335 0.9570406 0.2918741 0.49566955 0.29865845
## 315   0.305600540 0.3348335 0.9570406 0.2918741 0.49566955 0.29865845
## 869   0.305600540 0.3348335 0.9570406 0.2918741 0.49566955 0.29865845
## 967   0.305600540 0.3348335 0.9570406 0.2918741 0.49566955 0.29865845
## 570   0.304723347 0.3345324 0.9569378 0.2914702 0.49533955 0.29802310
## 378   0.300337382 0.3330349 0.9564165 0.2894514 0.49369608 0.29484414
## 467   0.300337382 0.3330349 0.9564165 0.2894514 0.49369608 0.29484414
## 1015  0.300337382 0.3330349 0.9564165 0.2894514 0.49369608 0.29484414
## 1254  0.300337382 0.3330349 0.9564165 0.2894514 0.49369608 0.29484414
## 1476  0.300337382 0.3330349 0.9564165 0.2894514 0.49369608 0.29484414
## 310   0.297705803 0.3321429 0.9560976 0.2882404 0.49271523 0.29293488
## 600   0.297705803 0.3321429 0.9560976 0.2882404 0.49271523 0.29293488
## 944   0.297705803 0.3321429 0.9560976 0.2882404 0.49271523 0.29293488
## 477   0.292442645 0.3303730 0.9554455 0.2858185 0.49076517 0.28911162
## 560   0.292442645 0.3303730 0.9554455 0.2858185 0.49076517 0.28911162
## 672   0.292442645 0.3303730 0.9554455 0.2858185 0.49076517 0.28911162
## 1111  0.292442645 0.3303730 0.9554455 0.2858185 0.49076517 0.28911162
## 1442  0.292442645 0.3303730 0.9554455 0.2858185 0.49076517 0.28911162
## 1463  0.292442645 0.3303730 0.9554455 0.2858185 0.49076517 0.28911162
## 547   0.287179487 0.3286219 0.9547739 0.2833958 0.48883049 0.28528136
## 1025  0.287179487 0.3286219 0.9547739 0.2833958 0.48883049 0.28528136
## 1110  0.287179487 0.3286219 0.9547739 0.2833958 0.48883049 0.28528136
## 1154  0.287179487 0.3286219 0.9547739 0.2833958 0.48883049 0.28528136
## 1515  0.287179487 0.3286219 0.9547739 0.2833958 0.48883049 0.28528136
## 1519  0.287179487 0.3286219 0.9547739 0.2833958 0.48883049 0.28528136
## 28    0.289676113 0.3289358 0.9592875 0.2882233 0.48984938 0.28894881
## 565   0.289676113 0.3289358 0.9592875 0.2882233 0.48984938 0.28894881
## 941   0.289676113 0.3289358 0.9592875 0.2882233 0.48984938 0.28894881
## 1340  0.289676113 0.3289358 0.9592875 0.2882233 0.48984938 0.28894881
## 1385  0.289676113 0.3289358 0.9592875 0.2882233 0.48984938 0.28894881
## 312   0.286977058 0.3277972 0.9611399 0.2889371 0.48891786 0.28795541
## 870   0.286977058 0.3277972 0.9611399 0.2889371 0.48891786 0.28795541
## 916   0.286977058 0.3277972 0.9611399 0.2889371 0.48891786 0.28795541
## 950   0.286977058 0.3277972 0.9611399 0.2889371 0.48891786 0.28795541
## 1059  0.286977058 0.3277972 0.9611399 0.2889371 0.48891786 0.28795541
## 1229  0.286977058 0.3277972 0.9611399 0.2889371 0.48891786 0.28795541
## 1355  0.286977058 0.3277972 0.9611399 0.2889371 0.48891786 0.28795541
## 188   0.288596491 0.3278261 0.9657895 0.2936156 0.48961039 0.29109521
## 236   0.288596491 0.3278261 0.9657895 0.2936156 0.48961039 0.29109521
## 472   0.288596491 0.3278261 0.9657895 0.2936156 0.48961039 0.29109521
## 759   0.288596491 0.3278261 0.9657895 0.2936156 0.48961039 0.29109521
## 1230  0.288596491 0.3278261 0.9657895 0.2936156 0.48961039 0.29109521
## 1478  0.288596491 0.3278261 0.9657895 0.2936156 0.48961039 0.29109521
## 47    0.287651822 0.3272727 0.9680000 0.2952727 0.48932039 0.29143737
## 353   0.287651822 0.3272727 0.9680000 0.2952727 0.48932039 0.29143737
## 619   0.287651822 0.3272727 0.9680000 0.2952727 0.48932039 0.29143737
## 1062  0.287651822 0.3272727 0.9680000 0.2952727 0.48932039 0.29143737
## 1449  0.287651822 0.3272727 0.9680000 0.2952727 0.48932039 0.29143737
## 803   0.284143050 0.3261432 0.9676550 0.2937982 0.48805681 0.28893030
## 1010  0.284143050 0.3261432 0.9676550 0.2937982 0.48805681 0.28893030
## 1104  0.284143050 0.3261432 0.9676550 0.2937982 0.48805681 0.28893030
## 1170  0.284143050 0.3261432 0.9676550 0.2937982 0.48805681 0.28893030
## 1446  0.283265857 0.3258621 0.9675676 0.2934296 0.48774194 0.28830296
## 15    0.280499325 0.3245090 0.9721448 0.2966538 0.48686739 0.28846351
## 114   0.280499325 0.3245090 0.9721448 0.2966538 0.48686739 0.28846351
## 183   0.280499325 0.3245090 0.9721448 0.2966538 0.48686739 0.28846351
## 192   0.280499325 0.3245090 0.9721448 0.2966538 0.48686739 0.28846351
## 248   0.280499325 0.3245090 0.9721448 0.2966538 0.48686739 0.28846351
## 344   0.280499325 0.3245090 0.9721448 0.2966538 0.48686739 0.28846351
## 510   0.280499325 0.3245090 0.9721448 0.2966538 0.48686739 0.28846351
## 567   0.280499325 0.3245090 0.9721448 0.2966538 0.48686739 0.28846351
## 571   0.280499325 0.3245090 0.9721448 0.2966538 0.48686739 0.28846351
## 1156  0.280499325 0.3245090 0.9721448 0.2966538 0.48686739 0.28846351
## 1497  0.280499325 0.3245090 0.9721448 0.2966538 0.48686739 0.28846351
## 276   0.275236167 0.3228547 0.9716714 0.2945261 0.48500319 0.28471782
## 406   0.275236167 0.3228547 0.9716714 0.2945261 0.48500319 0.28471782
## 442   0.275236167 0.3228547 0.9716714 0.2945261 0.48500319 0.28471782
## 861   0.275236167 0.3228547 0.9716714 0.2945261 0.48500319 0.28471782
## 933   0.275236167 0.3228547 0.9716714 0.2945261 0.48500319 0.28471782
## 1085  0.275236167 0.3228547 0.9716714 0.2945261 0.48500319 0.28471782
## 217   0.269973009 0.3212172 0.9711816 0.2923988 0.48315321 0.28096225
## 286   0.269973009 0.3212172 0.9711816 0.2923988 0.48315321 0.28096225
## 476   0.269973009 0.3212172 0.9711816 0.2923988 0.48315321 0.28096225
## 643   0.269973009 0.3212172 0.9711816 0.2923988 0.48315321 0.28096225
## 717   0.269973009 0.3212172 0.9711816 0.2923988 0.48315321 0.28096225
## 910   0.269973009 0.3212172 0.9711816 0.2923988 0.48315321 0.28096225
## 90    0.269905533 0.3209773 0.9737609 0.2947382 0.48319594 0.28204870
## 238   0.269905533 0.3209773 0.9737609 0.2947382 0.48319594 0.28204870
## 288   0.269905533 0.3209773 0.9737609 0.2947382 0.48319594 0.28204870
## 1288  0.269905533 0.3209773 0.9737609 0.2947382 0.48319594 0.28204870
## 5     0.264642375 0.3193630 0.9732938 0.2926567 0.48136450 0.27829727
## 356   0.264642375 0.3193630 0.9732938 0.2926567 0.48136450 0.27829727
## 379   0.264642375 0.3193630 0.9732938 0.2926567 0.48136450 0.27829727
## 407   0.264642375 0.3193630 0.9732938 0.2926567 0.48136450 0.27829727
## 715   0.264642375 0.3193630 0.9732938 0.2926567 0.48136450 0.27829727
## 1014  0.264642375 0.3193630 0.9732938 0.2926567 0.48136450 0.27829727
## 352   0.261943320 0.3183333 0.9757576 0.2940909 0.48050314 0.27755207
## 577   0.261943320 0.3183333 0.9757576 0.2940909 0.48050314 0.27755207
## 821   0.261943320 0.3183333 0.9757576 0.2940909 0.48050314 0.27755207
## 1101  0.261943320 0.3183333 0.9757576 0.2940909 0.48050314 0.27755207
## 1188  0.261943320 0.3183333 0.9757576 0.2940909 0.48050314 0.27755207
## 1228  0.261943320 0.3183333 0.9757576 0.2940909 0.48050314 0.27755207
## 1530  0.261943320 0.3183333 0.9757576 0.2940909 0.48050314 0.27755207
## 83    0.259311741 0.3175395 0.9755352 0.2930747 0.47959824 0.27567680
## 594   0.259311741 0.3175395 0.9755352 0.2930747 0.47959824 0.27567680
## 814   0.259311741 0.3175395 0.9755352 0.2930747 0.47959824 0.27567680
## 432   0.258434548 0.3172757 0.9754601 0.2927359 0.47929737 0.27505102
## 285   0.254858300 0.3160066 0.9779874 0.2939940 0.47815231 0.27372763
## 633   0.254858300 0.3160066 0.9779874 0.2939940 0.47815231 0.27372763
## 673   0.254858300 0.3160066 0.9779874 0.2939940 0.47815231 0.27372763
## 769   0.254858300 0.3160066 0.9779874 0.2939940 0.47815231 0.27372763
## 854   0.254858300 0.3160066 0.9779874 0.2939940 0.47815231 0.27372763
## 1114  0.254858300 0.3160066 0.9779874 0.2939940 0.47815231 0.27372763
## 1212  0.254858300 0.3160066 0.9779874 0.2939940 0.47815231 0.27372763
## 1380  0.254858300 0.3160066 0.9779874 0.2939940 0.47815231 0.27372763
## 383   0.248717949 0.3141920 0.9774920 0.2916839 0.47607209 0.26934555
## 939   0.248717949 0.3141920 0.9774920 0.2916839 0.47607209 0.26934555
## 1206  0.248717949 0.3141920 0.9774920 0.2916839 0.47607209 0.26934555
## 1225  0.248717949 0.3141920 0.9774920 0.2916839 0.47607209 0.26934555
## 1327  0.248717949 0.3141920 0.9774920 0.2916839 0.47607209 0.26934555
## 1525  0.248717949 0.3141920 0.9774920 0.2916839 0.47607209 0.26934555
## 1527  0.248717949 0.3141920 0.9774920 0.2916839 0.47607209 0.26934555
## 1202  0.246963563 0.3136773 0.9773463 0.2910236 0.47548107 0.26808995
## 1222  0.246963563 0.3136773 0.9773463 0.2910236 0.47548107 0.26808995
## 77    0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 127   0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 389   0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 450   0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 818   0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 975   0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 1029  0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 1131  0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 1458  0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 1465  0.238191633 0.3111292 0.9765886 0.2877178 0.47254781 0.26178612
## 132   0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 418   0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 536   0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 868   0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 891   0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 1183  0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 1249  0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 1360  0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 1383  0.233738192 0.3096774 0.9793103 0.2889878 0.47116564 0.25989898
## 48    0.227597841 0.3079391 0.9787986 0.2867376 0.46915089 0.25546207
## 156   0.227597841 0.3079391 0.9787986 0.2867376 0.46915089 0.25546207
## 200   0.227597841 0.3079391 0.9787986 0.2867376 0.46915089 0.25546207
## 883   0.227597841 0.3079391 0.9787986 0.2867376 0.46915089 0.25546207
## 1256  0.227597841 0.3079391 0.9787986 0.2867376 0.46915089 0.25546207
## 1398  0.227597841 0.3079391 0.9787986 0.2867376 0.46915089 0.25546207
## 1498  0.227597841 0.3079391 0.9787986 0.2867376 0.46915089 0.25546207
## 162   0.224898785 0.3070175 0.9818841 0.2889016 0.46836983 0.25489923
## 316   0.224898785 0.3070175 0.9818841 0.2889016 0.46836983 0.25489923
## 332   0.224898785 0.3070175 0.9818841 0.2889016 0.46836983 0.25489923
## 622   0.224898785 0.3070175 0.9818841 0.2889016 0.46836983 0.25489923
## 1100  0.224898785 0.3070175 0.9818841 0.2889016 0.46836983 0.25489923
## 1198  0.224898785 0.3070175 0.9818841 0.2889016 0.46836983 0.25489923
## 1466  0.224898785 0.3070175 0.9818841 0.2889016 0.46836983 0.25489923
## 71    0.228137652 0.3072670 0.9962121 0.3034791 0.46980676 0.26312546
## 152   0.228137652 0.3072670 0.9962121 0.3034791 0.46980676 0.26312546
## 175   0.228137652 0.3072670 0.9962121 0.3034791 0.46980676 0.26312546
## 314   0.228137652 0.3072670 0.9962121 0.3034791 0.46980676 0.26312546
## 656   0.228137652 0.3072670 0.9962121 0.3034791 0.46980676 0.26312546
## 746   0.228137652 0.3072670 0.9962121 0.3034791 0.46980676 0.26312546
## 801   0.228137652 0.3072670 0.9962121 0.3034791 0.46980676 0.26312546
## 832   0.228137652 0.3072670 0.9962121 0.3034791 0.46980676 0.26312546
## 1281  0.228137652 0.3072670 0.9962121 0.3034791 0.46980676 0.26312546
## 1401  0.228137652 0.3072670 0.9962121 0.3034791 0.46980676 0.26312546
## 1425  0.228137652 0.3072670 0.9962121 0.3034791 0.46980676 0.26312546
## 1492  0.228137652 0.3072670 0.9962121 0.3034791 0.46980676 0.26312546
## 62    0.221997301 0.3055774 0.9961089 0.3016863 0.46782922 0.25879248
## 70    0.221997301 0.3055774 0.9961089 0.3016863 0.46782922 0.25879248
## 163   0.221997301 0.3055774 0.9961089 0.3016863 0.46782922 0.25879248
## 429   0.221997301 0.3055774 0.9961089 0.3016863 0.46782922 0.25879248
## 555   0.221997301 0.3055774 0.9961089 0.3016863 0.46782922 0.25879248
## 557   0.221997301 0.3055774 0.9961089 0.3016863 0.46782922 0.25879248
## 1265  0.221997301 0.3055774 0.9961089 0.3016863 0.46782922 0.25879248
## 40    0.218488529 0.3046202 0.9960474 0.3006676 0.46670666 0.25630534
## 355   0.218488529 0.3046202 0.9960474 0.3006676 0.46670666 0.25630534
## 670   0.218488529 0.3046202 0.9960474 0.3006676 0.46670666 0.25630534
## 1158  0.218488529 0.3046202 0.9960474 0.3006676 0.46670666 0.25630534
## 2     0.212348178 0.3029595 0.9959350 0.2988945 0.46475508 0.25193192
## 103   0.212348178 0.3029595 0.9959350 0.2988945 0.46475508 0.25193192
## 351   0.212348178 0.3029595 0.9959350 0.2988945 0.46475508 0.25193192
## 433   0.212348178 0.3029595 0.9959350 0.2988945 0.46475508 0.25193192
## 538   0.212348178 0.3029595 0.9959350 0.2988945 0.46475508 0.25193192
## 1150  0.212348178 0.3029595 0.9959350 0.2988945 0.46475508 0.25193192
## 1174  0.212348178 0.3029595 0.9959350 0.2988945 0.46475508 0.25193192
## 253   0.204453441 0.3008507 0.9957806 0.2966313 0.46226976 0.24626672
## 345   0.204453441 0.3008507 0.9957806 0.2966313 0.46226976 0.24626672
## 350   0.204453441 0.3008507 0.9957806 0.2966313 0.46226976 0.24626672
## 390   0.204453441 0.3008507 0.9957806 0.2966313 0.46226976 0.24626672
## 632   0.204453441 0.3008507 0.9957806 0.2966313 0.46226976 0.24626672
## 1429  0.204453441 0.3008507 0.9957806 0.2966313 0.46226976 0.24626672
## 1437  0.204453441 0.3008507 0.9957806 0.2966313 0.46226976 0.24626672
## 1473  0.204453441 0.3008507 0.9957806 0.2966313 0.46226976 0.24626672
## 1526  0.204453441 0.3008507 0.9957806 0.2966313 0.46226976 0.24626672
## 39    0.196558704 0.2987711 0.9956140 0.2943852 0.45981087 0.24054930
## 84    0.196558704 0.2987711 0.9956140 0.2943852 0.45981087 0.24054930
## 403   0.196558704 0.2987711 0.9956140 0.2943852 0.45981087 0.24054930
## 481   0.196558704 0.2987711 0.9956140 0.2943852 0.45981087 0.24054930
## 890   0.196558704 0.2987711 0.9956140 0.2943852 0.45981087 0.24054930
## 988   0.196558704 0.2987711 0.9956140 0.2943852 0.45981087 0.24054930
## 1132  0.196558704 0.2987711 0.9956140 0.2943852 0.45981087 0.24054930
## 1227  0.196558704 0.2987711 0.9956140 0.2943852 0.45981087 0.24054930
## 1300  0.196558704 0.2987711 0.9956140 0.2943852 0.45981087 0.24054930
## 431   0.189541161 0.2969466 0.9954545 0.2924011 0.45764706 0.23541887
## 551   0.189541161 0.2969466 0.9954545 0.2924011 0.45764706 0.23541887
## 559   0.189541161 0.2969466 0.9954545 0.2924011 0.45764706 0.23541887
## 836   0.189541161 0.2969466 0.9954545 0.2924011 0.45764706 0.23541887
## 860   0.189541161 0.2969466 0.9954545 0.2924011 0.45764706 0.23541887
## 1039  0.189541161 0.2969466 0.9954545 0.2924011 0.45764706 0.23541887
## 1099  0.189541161 0.2969466 0.9954545 0.2924011 0.45764706 0.23541887
## 1295  0.189541161 0.2969466 0.9954545 0.2924011 0.45764706 0.23541887
## 81    0.186032389 0.2960426 0.9953704 0.2914130 0.45657277 0.23283525
## 462   0.186032389 0.2960426 0.9953704 0.2914130 0.45657277 0.23283525
## 771   0.186032389 0.2960426 0.9953704 0.2914130 0.45657277 0.23283525
## 1149  0.186032389 0.2960426 0.9953704 0.2914130 0.45657277 0.23283525
## 80    0.176383266 0.2935849 0.9951220 0.2887069 0.45364431 0.22566138
## 82    0.176383266 0.2935849 0.9951220 0.2887069 0.45364431 0.22566138
## 313   0.176383266 0.2935849 0.9951220 0.2887069 0.45364431 0.22566138
## 524   0.176383266 0.2935849 0.9951220 0.2887069 0.45364431 0.22566138
## 530   0.176383266 0.2935849 0.9951220 0.2887069 0.45364431 0.22566138
## 564   0.176383266 0.2935849 0.9951220 0.2887069 0.45364431 0.22566138
## 716   0.176383266 0.2935849 0.9951220 0.2887069 0.45364431 0.22566138
## 945   0.176383266 0.2935849 0.9951220 0.2887069 0.45364431 0.22566138
## 1008  0.176383266 0.2935849 0.9951220 0.2887069 0.45364431 0.22566138
## 1280  0.176383266 0.2935849 0.9951220 0.2887069 0.45364431 0.22566138
## 1315  0.176383266 0.2935849 0.9951220 0.2887069 0.45364431 0.22566138
## 45    0.171997301 0.2924812 0.9950000 0.2874812 0.45232558 0.22236455
## 53    0.171997301 0.2924812 0.9950000 0.2874812 0.45232558 0.22236455
## 664   0.171997301 0.2924812 0.9950000 0.2874812 0.45232558 0.22236455
## 808   0.171997301 0.2924812 0.9950000 0.2874812 0.45232558 0.22236455
## 1028  0.171997301 0.2924812 0.9950000 0.2874812 0.45232558 0.22236455
## 213   0.164979757 0.2907324 0.9947917 0.2855241 0.45023148 0.21703847
## 374   0.164979757 0.2907324 0.9947917 0.2855241 0.45023148 0.21703847
## 668   0.164979757 0.2907324 0.9947917 0.2855241 0.45023148 0.21703847
## 880   0.164979757 0.2907324 0.9947917 0.2855241 0.45023148 0.21703847
## 884   0.164979757 0.2907324 0.9947917 0.2855241 0.45023148 0.21703847
## 1027  0.164979757 0.2907324 0.9947917 0.2855241 0.45023148 0.21703847
## 1073  0.164979757 0.2907324 0.9947917 0.2855241 0.45023148 0.21703847
## 1394  0.164979757 0.2907324 0.9947917 0.2855241 0.45023148 0.21703847
## 1372  0.163225371 0.2902985 0.9947368 0.2850353 0.44971098 0.21569655
## 1475  0.163225371 0.2902985 0.9947368 0.2850353 0.44971098 0.21569655
## 249   0.160593792 0.2896500 0.9946524 0.2843024 0.44893249 0.21367547
## 1283  0.160593792 0.2896500 0.9946524 0.2843024 0.44893249 0.21367547
## 1474  0.160593792 0.2896500 0.9946524 0.2843024 0.44893249 0.21367547
## 176   0.153576248 0.2879349 0.9944134 0.2823483 0.44686962 0.20823542
## 371   0.153576248 0.2879349 0.9944134 0.2823483 0.44686962 0.20823542
## 388   0.153576248 0.2879349 0.9944134 0.2823483 0.44686962 0.20823542
## 533   0.153576248 0.2879349 0.9944134 0.2823483 0.44686962 0.20823542
## 1058  0.153576248 0.2879349 0.9944134 0.2823483 0.44686962 0.20823542
## 1090  0.153576248 0.2879349 0.9944134 0.2823483 0.44686962 0.20823542
## 1259  0.153576248 0.2879349 0.9944134 0.2823483 0.44686962 0.20823542
## 1428  0.153576248 0.2879349 0.9944134 0.2823483 0.44686962 0.20823542
## 96    0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 102   0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 110   0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 404   0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 478   0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 523   0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 529   0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 646   0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 698   0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 1082  0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 1324  0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 1369  0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 1439  0.142172740 0.2851906 0.9939759 0.2791665 0.44355758 0.19922316
## 161   0.138663968 0.2843567 0.9938272 0.2781839 0.44254835 0.19640285
## 743   0.138663968 0.2843567 0.9938272 0.2781839 0.44254835 0.19640285
## 838   0.138663968 0.2843567 0.9938272 0.2781839 0.44254835 0.19640285
## 943   0.138663968 0.2843567 0.9938272 0.2781839 0.44254835 0.19640285
## 295   0.132523617 0.2829091 0.9935484 0.2764575 0.44079320 0.19140832
## 723   0.132523617 0.2829091 0.9935484 0.2764575 0.44079320 0.19140832
## 736   0.132523617 0.2829091 0.9935484 0.2764575 0.44079320 0.19140832
## 889   0.132523617 0.2829091 0.9935484 0.2764575 0.44079320 0.19140832
## 1250  0.132523617 0.2829091 0.9935484 0.2764575 0.44079320 0.19140832
## 1291  0.132523617 0.2829091 0.9935484 0.2764575 0.44079320 0.19140832
## 1464  0.132523617 0.2829091 0.9935484 0.2764575 0.44079320 0.19140832
## 273   0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 287   0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 722   0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 800   0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 807   0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 842   0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 1007  0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 1440  0.128947368 0.2819957 1.0000000 0.2819957 0.43993232 0.19068980
## 16    0.121929825 0.2803738 1.0000000 0.2803738 0.43795620 0.18489438
## 334   0.121929825 0.2803738 1.0000000 0.2803738 0.43795620 0.18489438
## 598   0.121929825 0.2803738 1.0000000 0.2803738 0.43795620 0.18489438
## 601   0.121929825 0.2803738 1.0000000 0.2803738 0.43795620 0.18489438
## 699   0.121929825 0.2803738 1.0000000 0.2803738 0.43795620 0.18489438
## 936   0.121929825 0.2803738 1.0000000 0.2803738 0.43795620 0.18489438
## 1103  0.121929825 0.2803738 1.0000000 0.2803738 0.43795620 0.18489438
## 1322  0.121929825 0.2803738 1.0000000 0.2803738 0.43795620 0.18489438
## 109   0.111403509 0.2779758 1.0000000 0.2779758 0.43502510 0.17597578
## 125   0.111403509 0.2779758 1.0000000 0.2779758 0.43502510 0.17597578
## 306   0.111403509 0.2779758 1.0000000 0.2779758 0.43502510 0.17597578
## 331   0.111403509 0.2779758 1.0000000 0.2779758 0.43502510 0.17597578
## 428   0.111403509 0.2779758 1.0000000 0.2779758 0.43502510 0.17597578
## 460   0.111403509 0.2779758 1.0000000 0.2779758 0.43502510 0.17597578
## 705   0.111403509 0.2779758 1.0000000 0.2779758 0.43502510 0.17597578
## 866   0.111403509 0.2779758 1.0000000 0.2779758 0.43502510 0.17597578
## 1087  0.111403509 0.2779758 1.0000000 0.2779758 0.43502510 0.17597578
## 1221  0.111403509 0.2779758 1.0000000 0.2779758 0.43502510 0.17597578
## 1361  0.111403509 0.2779758 1.0000000 0.2779758 0.43502510 0.17597578
## 1447  0.111403509 0.2779758 1.0000000 0.2779758 0.43502510 0.17597578
## 59    0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 299   0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 419   0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 451   0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 574   0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 700   0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 938   0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 957   0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 1057  0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 1471  0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 1528  0.101754386 0.2758133 1.0000000 0.2758133 0.43237251 0.16752675
## 86    0.099122807 0.2752294 1.0000000 0.2752294 0.43165468 0.16517114
## 298   0.099122807 0.2752294 1.0000000 0.2752294 0.43165468 0.16517114
## 448   0.099122807 0.2752294 1.0000000 0.2752294 0.43165468 0.16517114
## 35    0.091228070 0.2734923 1.0000000 0.2734923 0.42951542 0.15795624
## 742   0.091228070 0.2734923 1.0000000 0.2734923 0.42951542 0.15795624
## 816   0.091228070 0.2734923 1.0000000 0.2734923 0.42951542 0.15795624
## 1081  0.091228070 0.2734923 1.0000000 0.2734923 0.42951542 0.15795624
## 1190  0.091228070 0.2734923 1.0000000 0.2734923 0.42951542 0.15795624
## 1395  0.091228070 0.2734923 1.0000000 0.2734923 0.42951542 0.15795624
## 1443  0.091228070 0.2734923 1.0000000 0.2734923 0.42951542 0.15795624
## 1503  0.091228070 0.2734923 1.0000000 0.2734923 0.42951542 0.15795624
## 1517  0.091228070 0.2734923 1.0000000 0.2734923 0.42951542 0.15795624
## 141   0.085087719 0.2721563 1.0000000 0.2721563 0.42786615 0.15217477
## 576   0.085087719 0.2721563 1.0000000 0.2721563 0.42786615 0.15217477
## 671   0.085087719 0.2721563 1.0000000 0.2721563 0.42786615 0.15217477
## 719   0.085087719 0.2721563 1.0000000 0.2721563 0.42786615 0.15217477
## 733   0.085087719 0.2721563 1.0000000 0.2721563 0.42786615 0.15217477
## 764   0.085087719 0.2721563 1.0000000 0.2721563 0.42786615 0.15217477
## 1282  0.085087719 0.2721563 1.0000000 0.2721563 0.42786615 0.15217477
## 421   0.082456140 0.2715877 1.0000000 0.2715877 0.42716320 0.14964651
## 501   0.082456140 0.2715877 1.0000000 0.2715877 0.42716320 0.14964651
## 502   0.082456140 0.2715877 1.0000000 0.2715877 0.42716320 0.14964651
## 520   0.075438596 0.2700831 1.0000000 0.2700831 0.42529989 0.14273994
## 662   0.075438596 0.2700831 1.0000000 0.2700831 0.42529989 0.14273994
## 721   0.075438596 0.2700831 1.0000000 0.2700831 0.42529989 0.14273994
## 985   0.075438596 0.2700831 1.0000000 0.2700831 0.42529989 0.14273994
## 1171  0.075438596 0.2700831 1.0000000 0.2700831 0.42529989 0.14273994
## 1173  0.075438596 0.2700831 1.0000000 0.2700831 0.42529989 0.14273994
## 1187  0.075438596 0.2700831 1.0000000 0.2700831 0.42529989 0.14273994
## 1441  0.075438596 0.2700831 1.0000000 0.2700831 0.42529989 0.14273994
## 24    0.070175439 0.2689655 1.0000000 0.2689655 0.42391304 0.13738549
## 211   0.070175439 0.2689655 1.0000000 0.2689655 0.42391304 0.13738549
## 725   0.070175439 0.2689655 1.0000000 0.2689655 0.42391304 0.13738549
## 962   0.070175439 0.2689655 1.0000000 0.2689655 0.42391304 0.13738549
## 1044  0.070175439 0.2689655 1.0000000 0.2689655 0.42391304 0.13738549
## 1400  0.070175439 0.2689655 1.0000000 0.2689655 0.42391304 0.13738549
## 42    0.059649123 0.2667579 1.0000000 0.2667579 0.42116631 0.12614227
## 387   0.059649123 0.2667579 1.0000000 0.2667579 0.42116631 0.12614227
## 500   0.059649123 0.2667579 1.0000000 0.2667579 0.42116631 0.12614227
## 556   0.059649123 0.2667579 1.0000000 0.2667579 0.42116631 0.12614227
## 621   0.059649123 0.2667579 1.0000000 0.2667579 0.42116631 0.12614227
## 762   0.059649123 0.2667579 1.0000000 0.2667579 0.42116631 0.12614227
## 1184  0.059649123 0.2667579 1.0000000 0.2667579 0.42116631 0.12614227
## 1257  0.059649123 0.2667579 1.0000000 0.2667579 0.42116631 0.12614227
## 1378  0.059649123 0.2667579 1.0000000 0.2667579 0.42116631 0.12614227
## 1399  0.059649123 0.2667579 1.0000000 0.2667579 0.42116631 0.12614227
## 1514  0.059649123 0.2667579 1.0000000 0.2667579 0.42116631 0.12614227
## 1516  0.059649123 0.2667579 1.0000000 0.2667579 0.42116631 0.12614227
## 180   0.050877193 0.2649457 1.0000000 0.2649457 0.41890440 0.11610207
## 458   0.050877193 0.2649457 1.0000000 0.2649457 0.41890440 0.11610207
## 553   0.050877193 0.2649457 1.0000000 0.2649457 0.41890440 0.11610207
## 596   0.050877193 0.2649457 1.0000000 0.2649457 0.41890440 0.11610207
## 784   0.050877193 0.2649457 1.0000000 0.2649457 0.41890440 0.11610207
## 788   0.050877193 0.2649457 1.0000000 0.2649457 0.41890440 0.11610207
## 1041  0.050877193 0.2649457 1.0000000 0.2649457 0.41890440 0.11610207
## 1155  0.050877193 0.2649457 1.0000000 0.2649457 0.41890440 0.11610207
## 1375  0.050877193 0.2649457 1.0000000 0.2649457 0.41890440 0.11610207
## 1500  0.050877193 0.2649457 1.0000000 0.2649457 0.41890440 0.11610207
## 731   0.046491228 0.2640487 1.0000000 0.2640487 0.41778254 0.11079689
## 789   0.046491228 0.2640487 1.0000000 0.2640487 0.41778254 0.11079689
## 1205  0.046491228 0.2640487 1.0000000 0.2640487 0.41778254 0.11079689
## 1316  0.046491228 0.2640487 1.0000000 0.2640487 0.41778254 0.11079689
## 1427  0.046491228 0.2640487 1.0000000 0.2640487 0.41778254 0.11079689
## 201   0.037719298 0.2622730 1.0000000 0.2622730 0.41555674 0.09946233
## 354   0.037719298 0.2622730 1.0000000 0.2622730 0.41555674 0.09946233
## 400   0.037719298 0.2622730 1.0000000 0.2622730 0.41555674 0.09946233
## 701   0.037719298 0.2622730 1.0000000 0.2622730 0.41555674 0.09946233
## 1017  0.037719298 0.2622730 1.0000000 0.2622730 0.41555674 0.09946233
## 1130  0.037719298 0.2622730 1.0000000 0.2622730 0.41555674 0.09946233
## 1243  0.037719298 0.2622730 1.0000000 0.2622730 0.41555674 0.09946233
## 1255  0.037719298 0.2622730 1.0000000 0.2622730 0.41555674 0.09946233
## 1299  0.037719298 0.2622730 1.0000000 0.2622730 0.41555674 0.09946233
## 1529  0.037719298 0.2622730 1.0000000 0.2622730 0.41555674 0.09946233
## 9     0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 23    0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 88    0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 480   0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 732   0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 1061  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 1185  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 1524  0.030701754 0.2608696 1.0000000 0.2608696 0.41379310 0.08949387
## 140   0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 254   0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 399   0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 498   0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 796   0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 1107  0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 1499  0.024561404 0.2596538 1.0000000 0.2596538 0.41226216 0.07985901
## 454   0.019298246 0.2586207 1.0000000 0.2586207 0.41095890 0.07064648
## 718   0.019298246 0.2586207 1.0000000 0.2586207 0.41095890 0.07064648
## 1037  0.019298246 0.2586207 1.0000000 0.2586207 0.41095890 0.07064648
## 1323  0.019298246 0.2586207 1.0000000 0.2586207 0.41095890 0.07064648
## 1426  0.019298246 0.2586207 1.0000000 0.2586207 0.41095890 0.07064648
## 1452  0.019298246 0.2586207 1.0000000 0.2586207 0.41095890 0.07064648
## 552   0.017543860 0.2582781 1.0000000 0.2582781 0.41052632 0.06731416
## 965   0.017543860 0.2582781 1.0000000 0.2582781 0.41052632 0.06731416
## 79    0.007894737 0.2564103 1.0000000 0.2564103 0.40816327 0.04499213
## 277   0.007894737 0.2564103 1.0000000 0.2564103 0.40816327 0.04499213
## 427   0.007894737 0.2564103 1.0000000 0.2564103 0.40816327 0.04499213
## 499   0.007894737 0.2564103 1.0000000 0.2564103 0.40816327 0.04499213
## 934   0.007894737 0.2564103 1.0000000 0.2564103 0.40816327 0.04499213
## 968   0.007894737 0.2564103 1.0000000 0.2564103 0.40816327 0.04499213
## 986   0.007894737 0.2564103 1.0000000 0.2564103 0.40816327 0.04499213
## 1032  0.007894737 0.2564103 1.0000000 0.2564103 0.40816327 0.04499213
## 1176  0.007894737 0.2564103 1.0000000 0.2564103 0.40816327 0.04499213
## 1203  0.007894737 0.2564103 1.0000000 0.2564103 0.40816327 0.04499213
## 1358  0.007894737 0.2564103 1.0000000 0.2564103 0.40816327 0.04499213
## 376   0.005263158 0.2559055 1.0000000 0.2559055 0.40752351 0.03669974
## 453   0.005263158 0.2559055 1.0000000 0.2559055 0.40752351 0.03669974
## 1245  0.005263158 0.2559055 1.0000000 0.2559055 0.40752351 0.03669974
## 209   0.001754386 0.2552356 1.0000000 0.2552356 0.40667362 0.02116085
## 328   0.001754386 0.2552356 1.0000000 0.2552356 0.40667362 0.02116085
## 704   0.001754386 0.2552356 1.0000000 0.2552356 0.40667362 0.02116085
## 839   0.001754386 0.2552356 1.0000000 0.2552356 0.40667362 0.02116085
## 108   0.000000000 0.2549020 0.0000000       NaN 0.40625000        NaN
## 1084  0.000000000 0.2549020 0.0000000       NaN 0.40625000        NaN
##              FPR           PG           RG
## 358  0.000000000 1.0000000000 0.0000000000
## 660  0.000000000 1.0000000000 0.0000000000
## 343  0.000000000 1.0000000000 0.0000000000
## 585  0.000000000 1.0000000000 0.0000000000
## 845  0.000000000 1.0000000000 0.0000000000
## 980  0.000000000 1.0000000000 0.0000000000
## 1404 0.000000000 1.0000000000 0.0000000000
## 1054 0.000000000 1.0000000000 0.0000000000
## 1071 0.000000000 1.0000000000 0.0000000000
## 1345 0.000000000 1.0000000000 0.0000000000
## 340  0.000000000 1.0000000000 0.0000000000
## 118  0.000000000 1.0000000000 0.0000000000
## 1386 0.000000000 1.0000000000 0.0000000000
## 398  0.000877193 0.8395542427 0.0000000000
## 93   0.000877193 0.8498245614 0.0000000000
## 919  0.000877193 0.8588610197 0.0000000000
## 441  0.000877193 0.8668730650 0.0000000000
## 667  0.001754386 0.7563352827 0.0000000000
## 852  0.001754386 0.7792105263 0.0000000000
## 1337 0.001754386 0.7792105263 0.0000000000
## 783  0.002631579 0.6928034372 0.0000000000
## 1481 0.002631579 0.7055785124 0.0000000000
## 849  0.002631579 0.7173415581 0.0000000000
## 614  0.002631579 0.7282072368 0.0000000000
## 1483 0.002631579 0.7382736842 0.0000000000
## 196  0.002631579 0.7563352827 0.0000000000
## 897  0.002631579 0.7563352827 0.0000000000
## 135  0.003508772 0.7282072368 0.0000000000
## 168  0.003508772 0.7282072368 0.0000000000
## 1001 0.003508772 0.7282072368 0.0000000000
## 1268 0.003508772 0.7282072368 0.0000000000
## 1409 0.003508772 0.7282072368 0.0000000000
## 1122 0.003508772 0.7358271712 0.0000000000
## 339  0.003508772 0.7430340557 0.0000000000
## 439  0.003508772 0.7563352827 0.0000000000
## 1121 0.003508772 0.7563352827 0.0000000000
## 1387 0.003508772 0.7624851025 0.0000000000
## 823  0.003508772 0.7739022111 0.0000000000
## 925  0.003508772 0.7739022111 0.0000000000
## 681  0.003508772 0.7891156463 0.0000000000
## 1066 0.003508772 0.7891156463 0.0000000000
## 1335 0.003508772 0.7891156463 0.0000000000
## 436  0.003508772 0.7981731187 0.0000000000
## 1488 0.003508772 0.7981731187 0.0000000000
## 1236 0.003508772 0.8024171540 0.0000000000
## 233  0.004385965 0.7792105263 0.0000000000
## 684  0.004385965 0.7792105263 0.0000000000
## 887  0.004385965 0.7792105263 0.0000000000
## 922  0.004385965 0.7792105263 0.0000000000
## 1334 0.004385965 0.7792105263 0.0000000000
## 761  0.004385965 0.7832817337 0.0000000000
## 100  0.006140351 0.7236537625 0.0000000000
## 111  0.006140351 0.7236537625 0.0000000000
## 583  0.006140351 0.7236537625 0.0000000000
## 785  0.006140351 0.7236537625 0.0000000000
## 582  0.006140351 0.7326140837 0.0000000000
## 1482 0.006140351 0.7326140837 0.0000000000
## 773  0.007017544 0.7024845109 0.0000000000
## 364  0.007017544 0.7071017100 0.0000000000
## 1314 0.007017544 0.7159224317 0.0000000000
## 1485 0.007017544 0.7159224317 0.0000000000
## 679  0.007017544 0.7201380141 0.0000000000
## 134  0.007017544 0.7282072368 0.0000000000
## 924  0.007017544 0.7282072368 0.0000000000
## 272  0.007894737 0.7014388041 0.0000000000
## 98   0.008771930 0.6803296948 0.0000000000
## 558  0.008771930 0.6803296948 0.0000000000
## 119  0.008771930 0.6887540212 0.0000000000
## 1490 0.008771930 0.6887540212 0.0000000000
## 902  0.008771930 0.6928034372 0.0000000000
## 898  0.008771930 0.7005969786 0.0000000000
## 1311 0.008771930 0.7005969786 0.0000000000
## 124  0.008771930 0.7080081504 0.0000000000
## 827  0.008771930 0.7080081504 0.0000000000
## 543  0.008771930 0.7150641493 0.0000000000
## 1406 0.008771930 0.7150641493 0.0000000000
## 1308 0.008771930 0.7184667690 0.0000000000
## 61   0.010526316 0.6824777994 0.0000000000
## 1053 0.010526316 0.6824777994 0.0000000000
## 1125 0.010526316 0.6824777994 0.0000000000
## 1388 0.010526316 0.6824777994 0.0000000000
## 680  0.010526316 0.6928034372 0.0000000000
## 682  0.010526316 0.6928034372 0.0000000000
## 1168 0.010526316 0.6928034372 0.0000000000
## 834  0.011403509 0.6799966623 0.0000000000
## 1094 0.011403509 0.6799966623 0.0000000000
## 1223 0.011403509 0.6799966623 0.0000000000
## 830  0.012280702 0.6613609178 0.0000000000
## 216  0.014035088 0.6260428850 0.0000000000
## 1362 0.014035088 0.6260428850 0.0000000000
## 749  0.014912281 0.6130453437 0.0000000000
## 1510 0.014912281 0.6130453437 0.0000000000
## 122  0.014912281 0.6307510726 0.0000000000
## 411  0.014912281 0.6307510726 0.0000000000
## 750  0.014912281 0.6307510726 0.0000000000
## 1200 0.014912281 0.6307510726 0.0000000000
## 1346 0.014912281 0.6307510726 0.0000000000
## 414  0.015789474 0.6219052632 0.0000000000
## 929  0.015789474 0.6219052632 0.0000000000
## 1333 0.015789474 0.6219052632 0.0000000000
## 136  0.016666667 0.6102941176 0.0000000000
## 819  0.016666667 0.6102941176 0.0000000000
## 489  0.017543860 0.5992292121 0.0000000000
## 918  0.017543860 0.5992292121 0.0000000000
## 269  0.018421053 0.5886740927 0.0000000000
## 465  0.018421053 0.5886740927 0.0000000000
## 194  0.018421053 0.5953338207 0.0000000000
## 828  0.018421053 0.5953338207 0.0000000000
## 653  0.018421053 0.5985850916 0.0000000000
## 117  0.018421053 0.6017855589 0.0000000000
## 360  0.018421053 0.6110934789 0.0000000000
## 366  0.018421053 0.6110934789 0.0000000000
## 437  0.018421053 0.6110934789 0.0000000000
## 994  0.018421053 0.6141019099 0.0000000000
## 840  0.019298246 0.6010625808 0.0000000000
## 265  0.019298246 0.6040819200 0.0000000000
## 113  0.021052632 0.5791590438 0.0000000000
## 572  0.021052632 0.5791590438 0.0000000000
## 321  0.021929825 0.5703125000 0.0000000000
## 775  0.021929825 0.5703125000 0.0000000000
## 337  0.022807018 0.5618184133 0.0000000000
## 1293 0.022807018 0.5618184133 0.0000000000
## 232  0.022807018 0.5648893203 0.0000000000
## 999  0.022807018 0.5679185607 0.0000000000
## 1096 0.022807018 0.5709069474 0.0000000000
## 1341 0.022807018 0.5738552731 0.0005190491
## 464  0.024561404 0.5548660727 0.0014154469
## 1241 0.024561404 0.5548660727 0.0014154469
## 1508 0.024561404 0.5548660727 0.0014154469
## 1445 0.025438596 0.5443179695 0.0014154469
## 591  0.026315789 0.5340260505 0.0014154469
## 755  0.026315789 0.5370269682 0.0023294924
## 541  0.026315789 0.5458089669 0.0051775148
## 709  0.026315789 0.5458089669 0.0051775148
## 806  0.026315789 0.5458089669 0.0051775148
## 989  0.027192982 0.5358697755 0.0051775148
## 199  0.028070175 0.5347798067 0.0081843662
## 504  0.028070175 0.5347798067 0.0081843662
## 581  0.028070175 0.5347798067 0.0081843662
## 615  0.028070175 0.5347798067 0.0081843662
## 204  0.028947368 0.5253627505 0.0081843662
## 612  0.029824561 0.5246085487 0.0113500467
## 1326 0.029824561 0.5246085487 0.0113500467
## 1405 0.029824561 0.5246085487 0.0113500467
## 1413 0.029824561 0.5246085487 0.0113500467
## 953  0.031578947 0.5069159780 0.0113500467
## 1157 0.031578947 0.5069159780 0.0113500467
## 230  0.033333333 0.4928000000 0.0124405689
## 362  0.033333333 0.4928000000 0.0124405689
## 805  0.033333333 0.4928000000 0.0124405689
## 848  0.033333333 0.4983552632 0.0146745562
## 1313 0.033333333 0.4983552632 0.0146745562
## 178  0.034210526 0.4901960784 0.0146745562
## 1095 0.034210526 0.4929439153 0.0158180214
## 363  0.034210526 0.4956635084 0.0169791342
## 89   0.035087719 0.4904031550 0.0181578947
## 274  0.035087719 0.4904031550 0.0181578947
## 756  0.035087719 0.4957311399 0.0205683588
## 1139 0.035087719 0.4957311399 0.0205683588
## 554  0.035964912 0.4905999809 0.0218000623
## 753  0.035964912 0.4905999809 0.0218000623
## 977  0.036842105 0.4882158177 0.0243164123
## 1320 0.036842105 0.4882158177 0.0243164123
## 1342 0.036842105 0.4882158177 0.0243164123
## 635  0.037719298 0.4807829491 0.0243164123
## 468  0.039473684 0.4715189465 0.0269033531
## 685  0.039473684 0.4715189465 0.0269033531
## 1023 0.039473684 0.4715189465 0.0269033531
## 1049 0.039473684 0.4715189465 0.0269033531
## 391  0.041228070 0.4627636283 0.0295608845
## 420  0.041228070 0.4627636283 0.0295608845
## 751  0.041228070 0.4627636283 0.0295608845
## 1052 0.041228070 0.4627636283 0.0295608845
## 1126 0.041228070 0.4652851659 0.0309161217
## 1124 0.041228070 0.4677843179 0.0322890065
## 826  0.041228070 0.4727165515 0.0350877193
## 1343 0.041228070 0.4727165515 0.0350877193
## 835  0.041228070 0.4775624652 0.0379570227
## 1136 0.041228070 0.4775624652 0.0379570227
## 281  0.042982456 0.4643100991 0.0379570227
## 1506 0.042982456 0.4643100991 0.0379570227
## 686  0.042982456 0.4667159763 0.0394181460
## 263  0.045614035 0.4524985288 0.0423933354
## 549  0.045614035 0.4524985288 0.0423933354
## 566  0.045614035 0.4524985288 0.0423933354
## 573  0.045614035 0.4524985288 0.0423933354
## 951  0.045614035 0.4524985288 0.0423933354
## 22   0.047368421 0.4403866810 0.0423933354
## 327  0.047368421 0.4403866810 0.0423933354
## 205  0.048245614 0.4415533586 0.0469884771
## 1135 0.048245614 0.4415533586 0.0469884771
## 1270 0.048245614 0.4415533586 0.0469884771
## 1416 0.048245614 0.4415533586 0.0469884771
## 613  0.049122807 0.4403866810 0.0501401433
## 979  0.049122807 0.4403866810 0.0501401433
## 1468 0.049122807 0.4403866810 0.0501401433
## 539  0.050000000 0.4369834711 0.0517424478
## 1412 0.050000000 0.4369834711 0.0517424478
## 8    0.050877193 0.4336605263 0.0533624001
## 981  0.050877193 0.4336605263 0.0533624001
## 54   0.051754386 0.4281538107 0.0533624001
## 338  0.051754386 0.4348877709 0.0583281428
## 368  0.051754386 0.4348877709 0.0583281428
## 688  0.051754386 0.4348877709 0.0583281428
## 713  0.054385965 0.4189006438 0.0583281428
## 991  0.054385965 0.4189006438 0.0583281428
## 1210 0.054385965 0.4189006438 0.0583281428
## 511  0.055263158 0.4159546665 0.0600186858
## 931  0.055263158 0.4159546665 0.0600186858
## 256  0.057017544 0.4080674664 0.0617268764
## 259  0.057017544 0.4080674664 0.0617268764
## 772  0.057017544 0.4080674664 0.0617268764
## 181  0.057894737 0.4075010674 0.0651962006
## 649  0.057894737 0.4075010674 0.0651962006
## 754  0.057894737 0.4075010674 0.0651962006
## 687  0.058771930 0.4069506155 0.0687361154
## 843  0.058771930 0.4069506155 0.0687361154
## 1523 0.058771930 0.4069506155 0.0687361154
## 91   0.059649123 0.4042975207 0.0705325444
## 636  0.059649123 0.4042975207 0.0705325444
## 982  0.060526316 0.4017002422 0.0723466210
## 1050 0.060526316 0.4017002422 0.0723466210
## 167  0.060526316 0.4038044094 0.0741783453
## 1152 0.062280702 0.3945762183 0.0741783453
## 1180 0.062280702 0.3945762183 0.0741783453
## 324  0.064035088 0.3876977329 0.0760277172
## 392  0.064035088 0.3876977329 0.0760277172
## 657  0.064035088 0.3876977329 0.0760277172
## 170  0.064912281 0.3874444080 0.0797794041
## 579  0.064912281 0.3874444080 0.0797794041
## 1370 0.064912281 0.3874444080 0.0797794041
## 121  0.065789474 0.3892211289 0.0855392920
## 804  0.065789474 0.3892211289 0.0855392920
## 915  0.065789474 0.3892211289 0.0855392920
## 1415 0.065789474 0.3892211289 0.0855392920
## 29   0.066666667 0.3869572184 0.0874945500
## 1240 0.066666667 0.3869572184 0.0874945500
## 415  0.066666667 0.3909420353 0.0914580089
## 586  0.066666667 0.3909420353 0.0914580089
## 896  0.066666667 0.3968308176 0.0975355549
## 1068 0.066666667 0.3968308176 0.0975355549
## 1381 0.066666667 0.3968308176 0.0975355549
## 512  0.067543860 0.3945489858 0.0995966988
## 1004 0.067543860 0.3945489858 0.0995966988
## 603  0.067543860 0.3964769066 0.1016754905
## 92   0.068421053 0.3980258383 0.1080177515
## 757  0.068421053 0.3980258383 0.1080177515
## 881  0.068421053 0.3980258383 0.1080177515
## 1403 0.068421053 0.3980258383 0.1080177515
## 423  0.069298246 0.3957948871 0.1101671338
## 1140 0.069298246 0.3957948871 0.1101671338
## 537  0.070175439 0.3917333015 0.1101671338
## 197  0.071052632 0.3969748940 0.1211787605
## 587  0.071052632 0.3969748940 0.1211787605
## 850  0.071052632 0.3969748940 0.1211787605
## 1161 0.071052632 0.3969748940 0.1211787605
## 1393 0.071052632 0.3969748940 0.1211787605
## 1407 0.071052632 0.3969748940 0.1211787605
## 260  0.071929825 0.3966409616 0.1257069449
## 782  0.071929825 0.3966409616 0.1257069449
## 921  0.071929825 0.3966409616 0.1257069449
## 903  0.071929825 0.3984401596 0.1279975086
## 55   0.073684211 0.3924475839 0.1303057199
## 264  0.073684211 0.3924475839 0.1303057199
## 1389 0.073684211 0.3924475839 0.1303057199
## 486  0.074561404 0.3886272617 0.1303057199
## 229  0.075438596 0.3866307700 0.1326315789
## 1239 0.075438596 0.3866307700 0.1326315789
## 737  0.076315789 0.3829010829 0.1326315789
## 461  0.079824561 0.3701838278 0.1349750856
## 790  0.079824561 0.3701838278 0.1349750856
## 992  0.079824561 0.3701838278 0.1349750856
## 1353 0.079824561 0.3701838278 0.1349750856
## 1368 0.079824561 0.3701838278 0.1349750856
## 858  0.081578947 0.3631945826 0.1349750856
## 1460 0.081578947 0.3631945826 0.1349750856
## 147  0.084210526 0.3547583244 0.1373362400
## 401  0.084210526 0.3547583244 0.1373362400
## 445  0.084210526 0.3547583244 0.1373362400
## 846  0.084210526 0.3547583244 0.1373362400
## 1513 0.085087719 0.3514406512 0.1373362400
## 901  0.085087719 0.3531754068 0.1397150420
## 998  0.085087719 0.3566201229 0.1445255891
## 1338 0.085087719 0.3566201229 0.1445255891
## 1070 0.085087719 0.3600320824 0.1494067269
## 1309 0.085087719 0.3600320824 0.1494067269
## 107  0.086842105 0.3551801343 0.1518737673
## 373  0.086842105 0.3551801343 0.1518737673
## 1138 0.086842105 0.3551801343 0.1518737673
## 607  0.087719298 0.3536423693 0.1543584553
## 623  0.087719298 0.3536423693 0.1543584553
## 983  0.089473684 0.3473087079 0.1543584553
## 1119 0.089473684 0.3473087079 0.1543584553
## 169  0.091228070 0.3444349574 0.1593807744
## 357  0.091228070 0.3444349574 0.1593807744
## 455  0.091228070 0.3444349574 0.1593807744
## 856  0.091228070 0.3444349574 0.1593807744
## 1384 0.092105263 0.3430310152 0.1619184055
## 1462 0.092105263 0.3430310152 0.1619184055
## 222  0.092982456 0.3416483727 0.1644736842
## 1162 0.092982456 0.3416483727 0.1644736842
## 31   0.093859649 0.3402865560 0.1670466106
## 1480 0.093859649 0.3402865560 0.1670466106
## 267  0.093859649 0.3419079289 0.1696371847
## 408  0.093859649 0.3435222563 0.1722454064
## 3    0.095614035 0.3376235738 0.1722454064
## 492  0.095614035 0.3376235738 0.1722454064
## 795  0.097368421 0.3318483314 0.1722454064
## 1494 0.097368421 0.3318483314 0.1722454064
## 625  0.098245614 0.3290059697 0.1722454064
## 906  0.098245614 0.3306020192 0.1748712758
## 617  0.100000000 0.3281632653 0.1801759576
## 893  0.100000000 0.3281632653 0.1801759576
## 1118 0.100000000 0.3281632653 0.1801759576
## 1411 0.100000000 0.3281632653 0.1801759576
## 634  0.100877193 0.3254009458 0.1801759576
## 885  0.101754386 0.3226668957 0.1801759576
## 244  0.104385965 0.3146307052 0.1801759576
## 1351 0.104385965 0.3146307052 0.1801759576
## 1392 0.104385965 0.3146307052 0.1801759576
## 203  0.105263158 0.3135620580 0.1828547701
## 844  0.105263158 0.3135620580 0.1828547701
## 645  0.107017544 0.3083862778 0.1828547701
## 706  0.107017544 0.3083862778 0.1828547701
## 1080 0.107894737 0.3058371847 0.1828547701
## 588  0.110526316 0.2983411738 0.1828547701
## 1297 0.110526316 0.2983411738 0.1828547701
## 1367 0.110526316 0.2983411738 0.1828547701
## 1137 0.110526316 0.2998737223 0.1855512301
## 648  0.111403509 0.2989452163 0.1882653379
## 744  0.111403509 0.2989452163 0.1882653379
## 179  0.112280702 0.2965138932 0.1882653379
## 50   0.114912281 0.2923680526 0.1937464964
## 410  0.114912281 0.2923680526 0.1937464964
## 447  0.114912281 0.2923680526 0.1937464964
## 515  0.114912281 0.2923680526 0.1937464964
## 1232 0.114912281 0.2923680526 0.1937464964
## 446  0.116666667 0.2877019866 0.1937464964
## 1055 0.116666667 0.2877019866 0.1937464964
## 41   0.117543860 0.2854024768 0.1937464964
## 166  0.117543860 0.2868885219 0.1965135472
## 1331 0.117543860 0.2883694308 0.1992982456
## 57   0.120175439 0.2845105563 0.2049205855
## 518  0.120175439 0.2845105563 0.2049205855
## 578  0.120175439 0.2845105563 0.2049205855
## 1231 0.120175439 0.2845105563 0.2049205855
## 1421 0.120175439 0.2845105563 0.2049205855
## 627  0.123684211 0.2786138198 0.2106135160
## 630  0.123684211 0.2786138198 0.2106135160
## 825  0.123684211 0.2786138198 0.2106135160
## 946  0.123684211 0.2786138198 0.2106135160
## 1005 0.123684211 0.2786138198 0.2106135160
## 1092 0.123684211 0.2786138198 0.2106135160
## 720  0.124561404 0.2764632063 0.2106135160
## 275  0.126315789 0.2750669783 0.2163770373
## 308  0.126315789 0.2750669783 0.2163770373
## 580  0.126315789 0.2750669783 0.2163770373
## 1305 0.126315789 0.2750669783 0.2163770373
## 52   0.128070175 0.2737047741 0.2222111492
## 302  0.128070175 0.2737047741 0.2222111492
## 655  0.128070175 0.2737047741 0.2222111492
## 907  0.128070175 0.2737047741 0.2222111492
## 293  0.130701754 0.2689518239 0.2251546766
## 693  0.130701754 0.2689518239 0.2251546766
## 1247 0.130701754 0.2689518239 0.2251546766
## 1332 0.130701754 0.2689518239 0.2251546766
## 116  0.130701754 0.2717226131 0.2310946746
## 258  0.130701754 0.2717226131 0.2310946746
## 496  0.132456140 0.2676984737 0.2310946746
## 674  0.132456140 0.2676984737 0.2310946746
## 463  0.134210526 0.2651117800 0.2340911450
## 503  0.134210526 0.2651117800 0.2340911450
## 610  0.134210526 0.2651117800 0.2340911450
## 36   0.135964912 0.2612210526 0.2340911450
## 1262 0.135964912 0.2612210526 0.2340911450
## 252  0.136842105 0.2606546092 0.2371052632
## 1339 0.136842105 0.2606546092 0.2371052632
## 10   0.140350877 0.2544641118 0.2401370290
## 130  0.140350877 0.2544641118 0.2401370290
## 146  0.140350877 0.2544641118 0.2401370290
## 647  0.140350877 0.2544641118 0.2401370290
## 1435 0.140350877 0.2544641118 0.2401370290
## 402  0.143859649 0.2471786597 0.2401370290
## 837  0.143859649 0.2471786597 0.2401370290
## 1217 0.143859649 0.2471786597 0.2401370290
## 1286 0.143859649 0.2471786597 0.2401370290
## 409  0.144736842 0.2467134980 0.2431864424
## 1220 0.144736842 0.2467134980 0.2431864424
## 641  0.146491228 0.2444942558 0.2462535036
## 728  0.146491228 0.2444942558 0.2462535036
## 976  0.146491228 0.2444942558 0.2462535036
## 678  0.147368421 0.2440509233 0.2493382124
## 1036 0.147368421 0.2440509233 0.2493382124
## 190  0.147368421 0.2479338843 0.2586982249
## 443  0.147368421 0.2479338843 0.2586982249
## 1143 0.147368421 0.2479338843 0.2586982249
## 734  0.150000000 0.2427497315 0.2586982249
## 1350 0.150000000 0.2427497315 0.2586982249
## 1430 0.150000000 0.2427497315 0.2586982249
## 207  0.153508772 0.2360337173 0.2586982249
## 241  0.153508772 0.2360337173 0.2586982249
## 726  0.153508772 0.2360337173 0.2586982249
## 1214 0.153508772 0.2360337173 0.2586982249
## 78   0.156140351 0.2336493808 0.2650264715
## 606  0.156140351 0.2336493808 0.2650264715
## 894  0.156140351 0.2336493808 0.2650264715
## 1102 0.156140351 0.2336493808 0.2650264715
## 1467 0.156140351 0.2336493808 0.2650264715
## 650  0.158771930 0.2300949479 0.2682170663
## 689  0.158771930 0.2300949479 0.2682170663
## 798  0.158771930 0.2300949479 0.2682170663
## 1207 0.158771930 0.2300949479 0.2682170663
## 239  0.162280702 0.2250909609 0.2714253088
## 506  0.162280702 0.2250909609 0.2714253088
## 781  0.162280702 0.2250909609 0.2714253088
## 1072 0.162280702 0.2250909609 0.2714253088
## 1279 0.162280702 0.2250909609 0.2714253088
## 191  0.163157895 0.2259989259 0.2778947368
## 261  0.163157895 0.2259989259 0.2778947368
## 1075 0.163157895 0.2259989259 0.2778947368
## 618  0.164035088 0.2244749121 0.2778947368
## 301  0.167543860 0.2196962974 0.2811559224
## 540  0.167543860 0.2196962974 0.2811559224
## 677  0.167543860 0.2196962974 0.2811559224
## 1218 0.167543860 0.2196962974 0.2811559224
## 1278 0.167543860 0.2196962974 0.2811559224
## 245  0.170175439 0.2176973865 0.2877312364
## 544  0.170175439 0.2176973865 0.2877312364
## 604  0.170175439 0.2176973865 0.2877312364
## 779  0.170175439 0.2176973865 0.2877312364
## 1248 0.170175439 0.2176973865 0.2877312364
## 774  0.172807018 0.2134067795 0.2877312364
## 875  0.172807018 0.2134067795 0.2877312364
## 1371 0.172807018 0.2134067795 0.2877312364
## 879  0.172807018 0.2145808040 0.2910453649
## 189  0.173684211 0.2155040444 0.2977265649
## 395  0.173684211 0.2155040444 0.2977265649
## 676  0.173684211 0.2155040444 0.2977265649
## 683  0.175438596 0.2150145639 0.3044783557
## 729  0.175438596 0.2150145639 0.3044783557
## 862  0.175438596 0.2150145639 0.3044783557
## 993  0.175438596 0.2150145639 0.3044783557
## 1    0.177192982 0.2122419361 0.3044783557
## 1436 0.177192982 0.2122419361 0.3044783557
## 382  0.178947368 0.2095102826 0.3044783557
## 797  0.178947368 0.2095102826 0.3044783557
## 661  0.179824561 0.2092984012 0.3078807225
## 1120 0.179824561 0.2092984012 0.3078807225
## 195  0.180701754 0.2090884990 0.3113007370
## 385  0.180701754 0.2090884990 0.3113007370
## 30   0.181578947 0.2077519155 0.3113007370
## 97   0.182456140 0.2075509154 0.3147383993
## 908  0.182456140 0.2075509154 0.3147383993
## 1195 0.182456140 0.2086745226 0.3181937091
## 470  0.186842105 0.2043686581 0.3251572719
## 592  0.186842105 0.2043686581 0.3251572719
## 727  0.186842105 0.2043686581 0.3251572719
## 912  0.186842105 0.2043686581 0.3251572719
## 1088 0.186842105 0.2043686581 0.3251572719
## 1273 0.186842105 0.2043686581 0.3251572719
## 1373 0.186842105 0.2043686581 0.3251572719
## 13   0.187719298 0.2041880073 0.3286655248
## 1330 0.187719298 0.2041880073 0.3286655248
## 174  0.188596491 0.2040089819 0.3321914253
## 900  0.188596491 0.2040089819 0.3321914253
## 904  0.188596491 0.2051027348 0.3357349735
## 513  0.190350877 0.2047400586 0.3428750130
## 1216 0.190350877 0.2047400586 0.3428750130
## 1402 0.190350877 0.2047400586 0.3428750130
## 1484 0.190350877 0.2047400586 0.3428750130
## 914  0.192105263 0.2022316400 0.3428750130
## 1151 0.192105263 0.2022316400 0.3428750130
## 149  0.192982456 0.2009905781 0.3428750130
## 724  0.194736842 0.1985343636 0.3428750130
## 1077 0.194736842 0.1985343636 0.3428750130
## 336  0.198245614 0.1947820724 0.3464715042
## 949  0.198245614 0.1947820724 0.3464715042
## 1035 0.198245614 0.1947820724 0.3464715042
## 1047 0.198245614 0.1947820724 0.3464715042
## 1448 0.198245614 0.1947820724 0.3464715042
## 221  0.199122807 0.1935974289 0.3464715042
## 138  0.202631579 0.1889395931 0.3464715042
## 226  0.202631579 0.1889395931 0.3464715042
## 535  0.202631579 0.1889395931 0.3464715042
## 665  0.202631579 0.1889395931 0.3464715042
## 270  0.204385965 0.1876965861 0.3500856431
## 457  0.204385965 0.1876965861 0.3500856431
## 1450 0.204385965 0.1876965861 0.3500856431
## 11   0.207017544 0.1843243775 0.3500856431
## 76   0.207017544 0.1843243775 0.3500856431
## 228  0.207017544 0.1843243775 0.3500856431
## 1181 0.207894737 0.1842418174 0.3537174297
## 1238 0.207894737 0.1842418174 0.3537174297
## 291  0.210526316 0.1819688650 0.3573668639
## 899  0.210526316 0.1819688650 0.3573668639
## 932  0.210526316 0.1819688650 0.3573668639
## 969  0.210526316 0.1819688650 0.3573668639
## 257  0.212280702 0.1798069295 0.3573668639
## 948  0.212280702 0.1798069295 0.3573668639
## 6    0.214035088 0.1786788681 0.3610339458
## 1063 0.214035088 0.1786788681 0.3610339458
## 1329 0.214035088 0.1786788681 0.3610339458
## 120  0.214912281 0.1786214669 0.3647186754
## 640  0.214912281 0.1786214669 0.3647186754
## 38   0.216666667 0.1765200987 0.3647186754
## 546  0.216666667 0.1765200987 0.3647186754
## 1408 0.216666667 0.1785080445 0.3721410775
## 1487 0.216666667 0.1785080445 0.3721410775
## 68   0.221052632 0.1733488847 0.3721410775
## 278  0.221052632 0.1733488847 0.3721410775
## 776  0.221052632 0.1733488847 0.3721410775
## 1192 0.221052632 0.1733488847 0.3721410775
## 1396 0.221052632 0.1733488847 0.3721410775
## 1006 0.221929825 0.1733140184 0.3758787501
## 1417 0.221929825 0.1733140184 0.3758787501
## 25   0.225438596 0.1702875856 0.3796340704
## 155  0.225438596 0.1702875856 0.3796340704
## 847  0.225438596 0.1702875856 0.3796340704
## 956  0.225438596 0.1702875856 0.3796340704
## 1461 0.225438596 0.1702875856 0.3796340704
## 56   0.228947368 0.1663869691 0.3796340704
## 449  0.228947368 0.1663869691 0.3796340704
## 483  0.228947368 0.1663869691 0.3796340704
## 1422 0.228947368 0.1663869691 0.3796340704
## 19   0.231578947 0.1635261257 0.3796340704
## 187  0.231578947 0.1635261257 0.3796340704
## 1349 0.231578947 0.1635261257 0.3796340704
## 833  0.233333333 0.1625916696 0.3834070383
## 952  0.233333333 0.1625916696 0.3834070383
## 1211 0.233333333 0.1625916696 0.3834070383
## 346  0.236842105 0.1607610270 0.3910059172
## 434  0.236842105 0.1607610270 0.3910059172
## 913  0.236842105 0.1607610270 0.3910059172
## 1076 0.236842105 0.1607610270 0.3910059172
## 1242 0.236842105 0.1607610270 0.3910059172
## 1306 0.236842105 0.1607610270 0.3910059172
## 172  0.238596491 0.1598643381 0.3948318281
## 629  0.238596491 0.1598643381 0.3948318281
## 1193 0.238596491 0.1598643381 0.3948318281
## 584  0.238596491 0.1617113585 0.4025365930
## 1414 0.238596491 0.1617113585 0.4025365930
## 831  0.242105263 0.1590196963 0.4064154469
## 1024 0.242105263 0.1590196963 0.4064154469
## 1147 0.242105263 0.1590196963 0.4064154469
## 1148 0.242105263 0.1590196963 0.4064154469
## 1263 0.242105263 0.1590196963 0.4064154469
## 283  0.244736842 0.1572719443 0.4103119485
## 714  0.244736842 0.1572719443 0.4103119485
## 1302 0.244736842 0.1572719443 0.4103119485
## 1419 0.244736842 0.1572719443 0.4103119485
## 920  0.246491228 0.1564251233 0.4142260978
## 971  0.246491228 0.1564251233 0.4142260978
## 1026 0.246491228 0.1564251233 0.4142260978
## 696  0.248245614 0.1546955775 0.4142260978
## 1172 0.248245614 0.1546955775 0.4142260978
## 95   0.250000000 0.1538761707 0.4181578947
## 694  0.250000000 0.1538761707 0.4181578947
## 1199 0.250000000 0.1538761707 0.4181578947
## 307  0.250877193 0.1547987616 0.4260744316
## 413  0.250877193 0.1547987616 0.4260744316
## 996  0.250877193 0.1547987616 0.4260744316
## 18   0.255263158 0.1514809953 0.4300591716
## 33   0.255263158 0.1514809953 0.4300591716
## 173  0.255263158 0.1514809953 0.4300591716
## 792  0.255263158 0.1514809953 0.4300591716
## 1209 0.255263158 0.1514809953 0.4300591716
## 1469 0.255263158 0.1514809953 0.4300591716
## 711  0.257017544 0.1498346978 0.4300591716
## 1356 0.257017544 0.1498346978 0.4300591716
## 49   0.257894737 0.1490188074 0.4300591716
## 304  0.261403509 0.1483730291 0.4421192775
## 347  0.261403509 0.1483730291 0.4421192775
## 394  0.261403509 0.1483730291 0.4421192775
## 412  0.261403509 0.1483730291 0.4421192775
## 666  0.261403509 0.1483730291 0.4421192775
## 829  0.261403509 0.1483730291 0.4421192775
## 1312 0.261403509 0.1483730291 0.4421192775
## 148  0.263157895 0.1484813895 0.4502475864
## 342  0.263157895 0.1484813895 0.4502475864
## 752  0.263157895 0.1484813895 0.4502475864
## 1108 0.263157895 0.1484813895 0.4502475864
## 268  0.264912281 0.1477439112 0.4543382124
## 626  0.264912281 0.1477439112 0.4543382124
## 802  0.264912281 0.1477439112 0.4543382124
## 369  0.264912281 0.1485883018 0.4584464860
## 159  0.268421053 0.1454606911 0.4584464860
## 697  0.268421053 0.1454606911 0.4584464860
## 730  0.268421053 0.1454606911 0.4584464860
## 1128 0.268421053 0.1454606911 0.4584464860
## 171  0.268421053 0.1471308202 0.4667159763
## 1048 0.268421053 0.1471308202 0.4667159763
## 20   0.272807018 0.1441240408 0.4708771930
## 595  0.272807018 0.1441240408 0.4708771930
## 911  0.272807018 0.1441240408 0.4708771930
## 1159 0.272807018 0.1441240408 0.4708771930
## 1235 0.272807018 0.1441240408 0.4708771930
## 1275 0.272807018 0.1441240408 0.4708771930
## 150  0.277192982 0.1420159319 0.4792525693
## 575  0.277192982 0.1420159319 0.4792525693
## 853  0.277192982 0.1420159319 0.4792525693
## 859  0.277192982 0.1420159319 0.4792525693
## 1009 0.277192982 0.1420159319 0.4792525693
## 1197 0.277192982 0.1420159319 0.4792525693
## 1296 0.277192982 0.1420159319 0.4792525693
## 628  0.278070175 0.1420876780 0.4834667290
## 995  0.278070175 0.1420876780 0.4834667290
## 34   0.284210526 0.1378152274 0.4876985363
## 325  0.284210526 0.1378152274 0.4876985363
## 562  0.284210526 0.1378152274 0.4876985363
## 652  0.284210526 0.1378152274 0.4876985363
## 877  0.284210526 0.1378152274 0.4876985363
## 1056 0.284210526 0.1378152274 0.4876985363
## 1169 0.284210526 0.1378152274 0.4876985363
## 1347 0.284210526 0.1378152274 0.4876985363
## 505  0.285964912 0.1371903105 0.4919479913
## 763  0.285964912 0.1371903105 0.4919479913
## 1213 0.285964912 0.1371903105 0.4919479913
## 94   0.289473684 0.1351793738 0.4962150939
## 219  0.289473684 0.1351793738 0.4962150939
## 923  0.289473684 0.1351793738 0.4962150939
## 955  0.289473684 0.1351793738 0.4962150939
## 970  0.289473684 0.1351793738 0.4962150939
## 164  0.292105263 0.1338947309 0.5004998443
## 813  0.292105263 0.1338947309 0.5004998443
## 1020 0.292105263 0.1338947309 0.5004998443
## 1144 0.292105263 0.1338947309 0.5004998443
## 123  0.293859649 0.1340802403 0.5091222880
## 973  0.293859649 0.1340802403 0.5091222880
## 1021 0.293859649 0.1340802403 0.5091222880
## 1336 0.293859649 0.1340802403 0.5091222880
## 474  0.296491228 0.1328231265 0.5134599813
## 608  0.296491228 0.1328231265 0.5134599813
## 990  0.296491228 0.1328231265 0.5134599813
## 1252 0.296491228 0.1328231265 0.5134599813
## 157  0.299122807 0.1308263154 0.5134599813
## 526  0.299122807 0.1308263154 0.5134599813
## 1089 0.299122807 0.1308263154 0.5134599813
## 105  0.301754386 0.1288610197 0.5134599813
## 393  0.301754386 0.1288610197 0.5134599813
## 1289 0.301754386 0.1288610197 0.5134599813
## 44   0.304385965 0.1269266202 0.5134599813
## 87   0.304385965 0.1269266202 0.5134599813
## 1224 0.304385965 0.1269266202 0.5134599813
## 282  0.307894737 0.1243944387 0.5134599813
## 735  0.307894737 0.1243944387 0.5134599813
## 778  0.307894737 0.1243944387 0.5134599813
## 793  0.307894737 0.1243944387 0.5134599813
## 599  0.315789474 0.1203401377 0.5221883110
## 616  0.315789474 0.1203401377 0.5221883110
## 780  0.315789474 0.1203401377 0.5221883110
## 809  0.315789474 0.1203401377 0.5221883110
## 815  0.315789474 0.1203401377 0.5221883110
## 917  0.315789474 0.1203401377 0.5221883110
## 940  0.315789474 0.1203401377 0.5221883110
## 1178 0.315789474 0.1203401377 0.5221883110
## 1272 0.315789474 0.1203401377 0.5221883110
## 1287 0.315789474 0.1203401377 0.5221883110
## 1303 0.315789474 0.1203401377 0.5221883110
## 279  0.318421053 0.1199919395 0.5309872314
## 493  0.318421053 0.1199919395 0.5309872314
## 542  0.318421053 0.1199919395 0.5309872314
## 874  0.318421053 0.1199919395 0.5309872314
## 1145 0.318421053 0.1199919395 0.5309872314
## 184  0.321052632 0.1182192149 0.5309872314
## 768  0.321052632 0.1182192149 0.5309872314
## 1420 0.321052632 0.1182192149 0.5309872314
## 153  0.324561404 0.1158973397 0.5309872314
## 384  0.324561404 0.1158973397 0.5309872314
## 872  0.324561404 0.1158973397 0.5309872314
## 1317 0.324561404 0.1158973397 0.5309872314
## 220  0.328070175 0.1143239333 0.5354131631
## 319  0.328070175 0.1143239333 0.5354131631
## 707  0.328070175 0.1143239333 0.5354131631
## 865  0.328070175 0.1143239333 0.5354131631
## 1093 0.328070175 0.1143239333 0.5354131631
## 747  0.329824561 0.1138983805 0.5398567424
## 1208 0.329824561 0.1138983805 0.5398567424
## 1505 0.329824561 0.1138983805 0.5398567424
## 517  0.333333333 0.1116777461 0.5398567424
## 561  0.333333333 0.1116777461 0.5398567424
## 767  0.333333333 0.1116777461 0.5398567424
## 1129 0.333333333 0.1116777461 0.5398567424
## 224  0.334210526 0.1118193250 0.5443179695
## 1194 0.334210526 0.1118193250 0.5443179695
## 133  0.338596491 0.1097920605 0.5487968442
## 145  0.338596491 0.1097920605 0.5487968442
## 569  0.338596491 0.1097920605 0.5487968442
## 777  0.338596491 0.1097920605 0.5487968442
## 926  0.338596491 0.1097920605 0.5487968442
## 1043 0.338596491 0.1097920605 0.5487968442
## 27   0.342982456 0.1071414523 0.5487968442
## 63   0.342982456 0.1071414523 0.5487968442
## 326  0.342982456 0.1071414523 0.5487968442
## 1397 0.342982456 0.1071414523 0.5487968442
## 1512 0.342982456 0.1071414523 0.5487968442
## 495  0.346491228 0.1064013643 0.5578075366
## 639  0.346491228 0.1064013643 0.5578075366
## 1098 0.346491228 0.1064013643 0.5578075366
## 1133 0.346491228 0.1064013643 0.5578075366
## 1164 0.346491228 0.1064013643 0.5578075366
## 1304 0.346491228 0.1064013643 0.5578075366
## 32   0.350000000 0.1050154884 0.5623393543
## 225  0.350000000 0.1050154884 0.5623393543
## 739  0.350000000 0.1050154884 0.5623393543
## 766  0.350000000 0.1050154884 0.5623393543
## 1067 0.350000000 0.1050154884 0.5623393543
## 297  0.353508772 0.1036564778 0.5668888197
## 380  0.353508772 0.1036564778 0.5668888197
## 602  0.353508772 0.1036564778 0.5668888197
## 871  0.353508772 0.1036564778 0.5668888197
## 1123 0.353508772 0.1036564778 0.5668888197
## 271  0.355263158 0.1033123776 0.5714559327
## 1233 0.355263158 0.1033123776 0.5714559327
## 1244 0.355263158 0.1033123776 0.5714559327
## 218  0.360526316 0.1003741776 0.5714559327
## 958  0.360526316 0.1003741776 0.5714559327
## 984  0.360526316 0.1003741776 0.5714559327
## 1042 0.360526316 0.1003741776 0.5714559327
## 1060 0.360526316 0.1003741776 0.5714559327
## 1391 0.360526316 0.1003741776 0.5714559327
## 112  0.362280702 0.1000523467 0.5760406934
## 262  0.362280702 0.1000523467 0.5760406934
## 882  0.362280702 0.1000523467 0.5760406934
## 624  0.363157895 0.0995738274 0.5760406934
## 17   0.365789474 0.0981517620 0.5760406934
## 280  0.365789474 0.0981517620 0.5760406934
## 712  0.365789474 0.0981517620 0.5760406934
## 165  0.371052632 0.0966158837 0.5852631579
## 246  0.371052632 0.0966158837 0.5852631579
## 341  0.371052632 0.0966158837 0.5852631579
## 760  0.371052632 0.0966158837 0.5852631579
## 794  0.371052632 0.0966158837 0.5852631579
## 822  0.371052632 0.0966158837 0.5852631579
## 863  0.371052632 0.0966158837 0.5852631579
## 1285 0.371052632 0.0966158837 0.5852631579
## 186  0.376315789 0.0938912378 0.5852631579
## 198  0.376315789 0.0938912378 0.5852631579
## 333  0.376315789 0.0938912378 0.5852631579
## 1033 0.376315789 0.0938912378 0.5852631579
## 1479 0.376315789 0.0938912378 0.5852631579
## 1495 0.376315789 0.0938912378 0.5852631579
## 292  0.378947368 0.0925570951 0.5852631579
## 377  0.378947368 0.0925570951 0.5852631579
## 1366 0.378947368 0.0925570951 0.5852631579
## 4    0.381578947 0.0918485979 0.5899008616
## 1165 0.381578947 0.0918485979 0.5899008616
## 1298 0.381578947 0.0918485979 0.5899008616
## 1496 0.381578947 0.0918485979 0.5899008616
## 1105 0.384210526 0.0911498043 0.5945562130
## 1251 0.384210526 0.0911498043 0.5945562130
## 1486 0.384210526 0.0911498043 0.5945562130
## 1504 0.384210526 0.0911498043 0.5945562130
## 294  0.385964912 0.0902889925 0.5945562130
## 1046 0.385964912 0.0902889925 0.5945562130
## 73   0.389473684 0.0891856491 0.5992292121
## 438  0.389473684 0.0891856491 0.5992292121
## 930  0.389473684 0.0891856491 0.5992292121
## 1274 0.389473684 0.0891856491 0.5992292121
## 1352 0.389473684 0.0891856491 0.5992292121
## 548  0.391228070 0.0883453226 0.5992292121
## 1112 0.391228070 0.0883453226 0.5992292121
## 7    0.392982456 0.0886916638 0.6086281532
## 335  0.392982456 0.0886916638 0.6086281532
## 817  0.392982456 0.0886916638 0.6086281532
## 1141 0.392982456 0.0886916638 0.6086281532
## 525  0.394736842 0.0884479723 0.6133540953
## 1410 0.394736842 0.0884479723 0.6133540953
## 1507 0.394736842 0.0884479723 0.6133540953
## 1292 0.395614035 0.0880341236 0.6133540953
## 128  0.396491228 0.0876221250 0.6133540953
## 323  0.398245614 0.0879670482 0.6228589225
## 359  0.398245614 0.0879670482 0.6228589225
## 514  0.398245614 0.0879670482 0.6228589225
## 864  0.398245614 0.0879670482 0.6228589225
## 99   0.400000000 0.0888881931 0.6372485207
## 605  0.400000000 0.0888881931 0.6372485207
## 905  0.400000000 0.0888881931 0.6372485207
## 1246 0.400000000 0.0888881931 0.6372485207
## 1260 0.400000000 0.0888881931 0.6372485207
## 367  0.401754386 0.0898013643 0.6517969480
## 416  0.401754386 0.0898013643 0.6517969480
## 440  0.401754386 0.0898013643 0.6517969480
## 663  0.401754386 0.0898013643 0.6517969480
## 1106 0.401754386 0.0898013643 0.6517969480
## 14   0.405263158 0.0887452624 0.6566817191
## 131  0.405263158 0.0887452624 0.6566817191
## 611  0.405263158 0.0887452624 0.6566817191
## 1034 0.405263158 0.0887452624 0.6566817191
## 1390 0.405263158 0.0887452624 0.6566817191
## 255  0.407894737 0.0881071692 0.6615841379
## 550  0.407894737 0.0881071692 0.6615841379
## 1086 0.407894737 0.0881071692 0.6615841379
## 1163 0.407894737 0.0881071692 0.6615841379
## 154  0.410526316 0.0874773003 0.6665042043
## 609  0.410526316 0.0874773003 0.6665042043
## 1013 0.410526316 0.0874773003 0.6665042043
## 1431 0.410526316 0.0874773003 0.6665042043
## 227  0.412280702 0.0878110916 0.6763972802
## 516  0.412280702 0.0878110916 0.6763972802
## 740  0.412280702 0.0878110916 0.6763972802
## 895  0.412280702 0.0878110916 0.6763972802
## 223  0.414912281 0.0871897811 0.6813702896
## 1022 0.414912281 0.0871897811 0.6813702896
## 1153 0.414912281 0.0871897811 0.6813702896
## 1344 0.414912281 0.0871897811 0.6813702896
## 43   0.420175439 0.0848683320 0.6813702896
## 424  0.420175439 0.0848683320 0.6813702896
## 484  0.420175439 0.0848683320 0.6813702896
## 491  0.420175439 0.0848683320 0.6813702896
## 1261 0.420175439 0.0848683320 0.6813702896
## 1321 0.420175439 0.0848683320 0.6813702896
## 182  0.424561404 0.0840690688 0.6913692515
## 206  0.424561404 0.0840690688 0.6913692515
## 568  0.424561404 0.0840690688 0.6913692515
## 590  0.424561404 0.0840690688 0.6913692515
## 1382 0.424561404 0.0840690688 0.6913692515
## 1489 0.424561404 0.0840690688 0.6913692515
## 1521 0.424561404 0.0840690688 0.6913692515
## 534  0.426315789 0.0833196093 0.6913692515
## 1434 0.426315789 0.0833196093 0.6913692515
## 126  0.430701754 0.0820105292 0.6963952040
## 137  0.430701754 0.0820105292 0.6963952040
## 497  0.430701754 0.0820105292 0.6963952040
## 886  0.430701754 0.0820105292 0.6963952040
## 1166 0.430701754 0.0820105292 0.6963952040
## 1215 0.430701754 0.0820105292 0.6963952040
## 741  0.433333333 0.0809177567 0.6963952040
## 1175 0.433333333 0.0809177567 0.6963952040
## 1348 0.433333333 0.0809177567 0.6963952040
## 143  0.436842105 0.0794818464 0.6963952040
## 691  0.436842105 0.0794818464 0.6963952040
## 1018 0.436842105 0.0794818464 0.6963952040
## 1318 0.436842105 0.0794818464 0.6963952040
## 64   0.442105263 0.0778947368 0.7014388041
## 69   0.442105263 0.0778947368 0.7014388041
## 466  0.442105263 0.0778947368 0.7014388041
## 589  0.442105263 0.0778947368 0.7014388041
## 873  0.442105263 0.0778947368 0.7014388041
## 1069 0.442105263 0.0778947368 0.7014388041
## 1146 0.442105263 0.0778947368 0.7014388041
## 651  0.443859649 0.0782417582 0.7115789474
## 857  0.443859649 0.0782417582 0.7115789474
## 1000 0.443859649 0.0782417582 0.7115789474
## 1491 0.443859649 0.0782417582 0.7115789474
## 139  0.445614035 0.0780675576 0.7166754905
## 654  0.445614035 0.0780675576 0.7166754905
## 841  0.445614035 0.0780675576 0.7166754905
## 160  0.450877193 0.0760168254 0.7166754905
## 290  0.450877193 0.0760168254 0.7166754905
## 521  0.450877193 0.0760168254 0.7166754905
## 892  0.450877193 0.0760168254 0.7166754905
## 1226 0.450877193 0.0760168254 0.7166754905
## 1364 0.450877193 0.0760168254 0.7166754905
## 212  0.453508772 0.0755188404 0.7217896813
## 266  0.453508772 0.0755188404 0.7217896813
## 405  0.453508772 0.0755188404 0.7217896813
## 765  0.453508772 0.0755188404 0.7217896813
## 317  0.457017544 0.0741911718 0.7217896813
## 1423 0.457017544 0.0741911718 0.7217896813
## 1432 0.457017544 0.0741911718 0.7217896813
## 1520 0.457017544 0.0741911718 0.7217896813
## 65   0.463157895 0.0724158578 0.7269215198
## 67   0.463157895 0.0724158578 0.7269215198
## 475  0.463157895 0.0724158578 0.7269215198
## 494  0.463157895 0.0724158578 0.7269215198
## 507  0.463157895 0.0724158578 0.7269215198
## 927  0.463157895 0.0724158578 0.7269215198
## 947  0.463157895 0.0724158578 0.7269215198
## 1117 0.463157895 0.0724158578 0.7269215198
## 300  0.464912281 0.0722713787 0.7320710059
## 509  0.464912281 0.0722713787 0.7320710059
## 642  0.464912281 0.0722713787 0.7320710059
## 508  0.468421053 0.0719857094 0.7424229212
## 855  0.468421053 0.0719857094 0.7424229212
## 1109 0.468421053 0.0719857094 0.7424229212
## 1201 0.468421053 0.0719857094 0.7424229212
## 1234 0.468421053 0.0719857094 0.7424229212
## 1424 0.468421053 0.0719857094 0.7424229212
## 435  0.469298246 0.0721602803 0.7476253504
## 810  0.469298246 0.0721602803 0.7476253504
## 487  0.471929825 0.0712166545 0.7476253504
## 1374 0.471929825 0.0712166545 0.7476253504
## 1518 0.471929825 0.0712166545 0.7476253504
## 21   0.478070175 0.0690577678 0.7476253504
## 144  0.478070175 0.0690577678 0.7476253504
## 193  0.478070175 0.0690577678 0.7476253504
## 320  0.478070175 0.0690577678 0.7476253504
## 473  0.478070175 0.0690577678 0.7476253504
## 1354 0.478070175 0.0690577678 0.7476253504
## 1456 0.478070175 0.0690577678 0.7476253504
## 74   0.484210526 0.0674310043 0.7528454272
## 284  0.484210526 0.0674310043 0.7528454272
## 527  0.484210526 0.0674310043 0.7528454272
## 620  0.484210526 0.0674310043 0.7528454272
## 1078 0.484210526 0.0674310043 0.7528454272
## 1142 0.484210526 0.0674310043 0.7528454272
## 1328 0.484210526 0.0674310043 0.7528454272
## 1363 0.484210526 0.0674310043 0.7528454272
## 242  0.485964912 0.0668393762 0.7528454272
## 1294 0.485964912 0.0668393762 0.7528454272
## 485  0.491228070 0.0650917896 0.7528454272
## 1003 0.491228070 0.0650917896 0.7528454272
## 1019 0.491228070 0.0650917896 0.7528454272
## 1160 0.491228070 0.0650917896 0.7528454272
## 1444 0.491228070 0.0650917896 0.7528454272
## 1477 0.491228070 0.0650917896 0.7528454272
## 75   0.495614035 0.0636661105 0.7528454272
## 231  0.495614035 0.0636661105 0.7528454272
## 243  0.495614035 0.0636661105 0.7528454272
## 593  0.495614035 0.0636661105 0.7528454272
## 1204 0.495614035 0.0636661105 0.7528454272
## 878  0.497368421 0.0631034807 0.7528454272
## 1189 0.497368421 0.0631034807 0.7528454272
## 417  0.498245614 0.0641996619 0.7686115437
## 638  0.498245614 0.0641996619 0.7686115437
## 1065 0.498245614 0.0641996619 0.7686115437
## 1091 0.498245614 0.0641996619 0.7686115437
## 482  0.500877193 0.0638147215 0.7739022111
## 708  0.500877193 0.0638147215 0.7739022111
## 748  0.500877193 0.0638147215 0.7739022111
## 1258 0.500877193 0.0638147215 0.7739022111
## 361  0.501754386 0.0639910628 0.7792105263
## 963  0.501754386 0.0639910628 0.7792105263
## 46   0.507017544 0.0632329959 0.7898800997
## 101  0.507017544 0.0632329959 0.7898800997
## 365  0.507017544 0.0632329959 0.7898800997
## 386  0.507017544 0.0632329959 0.7898800997
## 397  0.507017544 0.0632329959 0.7898800997
## 1040 0.507017544 0.0632329959 0.7898800997
## 1269 0.507017544 0.0632329959 0.7898800997
## 1359 0.507017544 0.0632329959 0.7898800997
## 519  0.509649123 0.0646539999 0.8168628672
## 820  0.509649123 0.0646539999 0.8168628672
## 824  0.509649123 0.0646539999 0.8168628672
## 851  0.509649123 0.0646539999 0.8168628672
## 1064 0.509649123 0.0646539999 0.8168628672
## 1179 0.509649123 0.0646539999 0.8168628672
## 1267 0.509649123 0.0646539999 0.8168628672
## 1307 0.509649123 0.0646539999 0.8168628672
## 208  0.513157895 0.0635557586 0.8168628672
## 215  0.513157895 0.0635557586 0.8168628672
## 234  0.513157895 0.0635557586 0.8168628672
## 812  0.513157895 0.0635557586 0.8168628672
## 430  0.520175439 0.0614076115 0.8168628672
## 459  0.520175439 0.0614076115 0.8168628672
## 531  0.520175439 0.0614076115 0.8168628672
## 867  0.520175439 0.0614076115 0.8168628672
## 1134 0.520175439 0.0614076115 0.8168628672
## 1219 0.520175439 0.0614076115 0.8168628672
## 1357 0.520175439 0.0614076115 0.8168628672
## 1453 0.520175439 0.0614076115 0.8168628672
## 348  0.521929825 0.0613170247 0.8223123637
## 978  0.521929825 0.0613170247 0.8223123637
## 1493 0.521929825 0.0613170247 0.8223123637
## 528  0.523684211 0.0612270547 0.8277795079
## 960  0.523684211 0.0612270547 0.8277795079
## 1237 0.523684211 0.0612270547 0.8277795079
## 372  0.525438596 0.0611376953 0.8332642998
## 1051 0.525438596 0.0611376953 0.8332642998
## 1470 0.525438596 0.0611376953 0.8332642998
## 158  0.531578947 0.0593312508 0.8332642998
## 675  0.531578947 0.0593312508 0.8332642998
## 786  0.531578947 0.0593312508 0.8332642998
## 787  0.531578947 0.0593312508 0.8332642998
## 937  0.531578947 0.0593312508 0.8332642998
## 1277 0.531578947 0.0593312508 0.8332642998
## 1319 0.531578947 0.0593312508 0.8332642998
## 669  0.535964912 0.0584924236 0.8387667393
## 964  0.535964912 0.0584924236 0.8387667393
## 974  0.535964912 0.0584924236 0.8387667393
## 997  0.535964912 0.0584924236 0.8387667393
## 1097 0.535964912 0.0584924236 0.8387667393
## 1457 0.535964912 0.0584924236 0.8387667393
## 12   0.543859649 0.0562693604 0.8387667393
## 60   0.543859649 0.0562693604 0.8387667393
## 202  0.543859649 0.0562693604 0.8387667393
## 214  0.543859649 0.0562693604 0.8387667393
## 471  0.543859649 0.0562693604 0.8387667393
## 522  0.543859649 0.0562693604 0.8387667393
## 799  0.543859649 0.0562693604 0.8387667393
## 928  0.543859649 0.0562693604 0.8387667393
## 1186 0.543859649 0.0562693604 0.8387667393
## 66   0.545614035 0.0557850512 0.8387667393
## 1012 0.545614035 0.0557850512 0.8387667393
## 597  0.548245614 0.0550650700 0.8387667393
## 738  0.548245614 0.0550650700 0.8387667393
## 972  0.548245614 0.0550650700 0.8387667393
## 381  0.552631579 0.0538821395 0.8387667393
## 490  0.552631579 0.0538821395 0.8387667393
## 961  0.552631579 0.0538821395 0.8387667393
## 1182 0.552631579 0.0538821395 0.8387667393
## 1501 0.552631579 0.0538821395 0.8387667393
## 444  0.557017544 0.0531243111 0.8442868265
## 545  0.557017544 0.0531243111 0.8442868265
## 658  0.557017544 0.0531243111 0.8442868265
## 695  0.557017544 0.0531243111 0.8442868265
## 745  0.557017544 0.0531243111 0.8442868265
## 876  0.557017544 0.0531243111 0.8442868265
## 237  0.563157895 0.0519251343 0.8498245614
## 311  0.563157895 0.0519251343 0.8498245614
## 422  0.563157895 0.0519251343 0.8498245614
## 456  0.563157895 0.0519251343 0.8498245614
## 1045 0.563157895 0.0519251343 0.8498245614
## 1177 0.563157895 0.0519251343 0.8498245614
## 1310 0.563157895 0.0519251343 0.8498245614
## 1511 0.563157895 0.0519251343 0.8498245614
## 469  0.563157895 0.0523243686 0.8553799439
## 349  0.569298246 0.0507543258 0.8553799439
## 479  0.569298246 0.0507543258 0.8553799439
## 637  0.569298246 0.0507543258 0.8553799439
## 935  0.569298246 0.0507543258 0.8553799439
## 1074 0.569298246 0.0507543258 0.8553799439
## 1116 0.569298246 0.0507543258 0.8553799439
## 1276 0.569298246 0.0507543258 0.8553799439
## 85   0.572807018 0.0502652992 0.8609529742
## 329  0.572807018 0.0502652992 0.8609529742
## 1196 0.572807018 0.0502652992 0.8609529742
## 1284 0.572807018 0.0502652992 0.8609529742
## 1290 0.572807018 0.0502652992 0.8609529742
## 396  0.575438596 0.0496109991 0.8609529742
## 426  0.575438596 0.0496109991 0.8609529742
## 563  0.575438596 0.0496109991 0.8609529742
## 142  0.579824561 0.0489207923 0.8665436520
## 644  0.579824561 0.0489207923 0.8665436520
## 659  0.579824561 0.0489207923 0.8665436520
## 690  0.579824561 0.0489207923 0.8665436520
## 692  0.579824561 0.0489207923 0.8665436520
## 791  0.579824561 0.0489207923 0.8665436520
## 296  0.581578947 0.0484943023 0.8665436520
## 305  0.581578947 0.0484943023 0.8665436520
## 58   0.585964912 0.0478212122 0.8721519776
## 811  0.585964912 0.0478212122 0.8721519776
## 1079 0.585964912 0.0478212122 0.8721519776
## 1083 0.585964912 0.0478212122 0.8721519776
## 1271 0.585964912 0.0478212122 0.8721519776
## 1377 0.585964912 0.0478212122 0.8721519776
## 532  0.587719298 0.0474034162 0.8721519776
## 631  0.587719298 0.0474034162 0.8721519776
## 115  0.591228070 0.0473291913 0.8834215717
## 177  0.591228070 0.0473291913 0.8834215717
## 289  0.591228070 0.0473291913 0.8834215717
## 303  0.591228070 0.0473291913 0.8834215717
## 1115 0.591228070 0.0473291913 0.8834215717
## 1472 0.591228070 0.0473291913 0.8834215717
## 129  0.593859649 0.0467119433 0.8834215717
## 251  0.593859649 0.0467119433 0.8834215717
## 1253 0.593859649 0.0467119433 0.8834215717
## 104  0.599122807 0.0454961846 0.8834215717
## 151  0.599122807 0.0454961846 0.8834215717
## 309  0.599122807 0.0454961846 0.8834215717
## 1127 0.599122807 0.0454961846 0.8834215717
## 1191 0.599122807 0.0454961846 0.8834215717
## 1522 0.599122807 0.0454961846 0.8834215717
## 210  0.602631579 0.0446993134 0.8834215717
## 1016 0.602631579 0.0446993134 0.8834215717
## 1030 0.602631579 0.0446993134 0.8834215717
## 1455 0.602631579 0.0446993134 0.8834215717
## 330  0.606140351 0.0439131431 0.8834215717
## 987  0.606140351 0.0439131431 0.8834215717
## 1365 0.606140351 0.0439131431 0.8834215717
## 1459 0.606140351 0.0439131431 0.8834215717
## 37   0.611403509 0.0427535740 0.8834215717
## 235  0.611403509 0.0427535740 0.8834215717
## 702  0.611403509 0.0427535740 0.8834215717
## 1113 0.611403509 0.0427535740 0.8834215717
## 1325 0.611403509 0.0427535740 0.8834215717
## 1451 0.611403509 0.0427535740 0.8834215717
## 247  0.619298246 0.0410573921 0.8834215717
## 375  0.619298246 0.0410573921 0.8834215717
## 452  0.619298246 0.0410573921 0.8834215717
## 758  0.619298246 0.0410573921 0.8834215717
## 954  0.619298246 0.0410573921 0.8834215717
## 1011 0.619298246 0.0410573921 0.8834215717
## 1264 0.619298246 0.0410573921 0.8834215717
## 1454 0.619298246 0.0410573921 0.8834215717
## 1509 0.619298246 0.0410573921 0.8834215717
## 72   0.625438596 0.0397729116 0.8834215717
## 250  0.625438596 0.0397729116 0.8834215717
## 322  0.625438596 0.0397729116 0.8834215717
## 425  0.625438596 0.0397729116 0.8834215717
## 1002 0.625438596 0.0397729116 0.8834215717
## 1266 0.625438596 0.0397729116 0.8834215717
## 1438 0.625438596 0.0397729116 0.8834215717
## 106  0.631578947 0.0385179344 0.8834215717
## 185  0.631578947 0.0385179344 0.8834215717
## 370  0.631578947 0.0385179344 0.8834215717
## 703  0.631578947 0.0385179344 0.8834215717
## 710  0.631578947 0.0385179344 0.8834215717
## 942  0.631578947 0.0385179344 0.8834215717
## 1301 0.631578947 0.0385179344 0.8834215717
## 51   0.634210526 0.0383319677 0.8890828402
## 1038 0.634210526 0.0383319677 0.8890828402
## 1379 0.634210526 0.0383319677 0.8890828402
## 1418 0.634210526 0.0383319677 0.8890828402
## 318  0.638596491 0.0377986951 0.8947617565
## 888  0.638596491 0.0377986951 0.8947617565
## 966  0.638596491 0.0377986951 0.8947617565
## 1031 0.638596491 0.0377986951 0.8947617565
## 1167 0.638596491 0.0377986951 0.8947617565
## 1433 0.638596491 0.0377986951 0.8947617565
## 240  0.644736842 0.0365952226 0.8947617565
## 488  0.644736842 0.0365952226 0.8947617565
## 770  0.644736842 0.0365952226 0.8947617565
## 909  0.644736842 0.0365952226 0.8947617565
## 959  0.644736842 0.0365952226 0.8947617565
## 1376 0.644736842 0.0365952226 0.8947617565
## 1502 0.644736842 0.0365952226 0.8947617565
## 26   0.648245614 0.0359197699 0.8947617565
## 315  0.648245614 0.0359197699 0.8947617565
## 869  0.648245614 0.0359197699 0.8947617565
## 967  0.648245614 0.0359197699 0.8947617565
## 570  0.649122807 0.0357522766 0.8947617565
## 378  0.653508772 0.0349229234 0.8947617565
## 467  0.653508772 0.0349229234 0.8947617565
## 1015 0.653508772 0.0349229234 0.8947617565
## 1254 0.653508772 0.0349229234 0.8947617565
## 1476 0.653508772 0.0349229234 0.8947617565
## 310  0.656140351 0.0344317266 0.8947617565
## 600  0.656140351 0.0344317266 0.8947617565
## 944  0.656140351 0.0344317266 0.8947617565
## 477  0.661403509 0.0334635082 0.8947617565
## 560  0.661403509 0.0334635082 0.8947617565
## 672  0.661403509 0.0334635082 0.8947617565
## 1111 0.661403509 0.0334635082 0.8947617565
## 1442 0.661403509 0.0334635082 0.8947617565
## 1463 0.661403509 0.0334635082 0.8947617565
## 547  0.666666667 0.0325138284 0.8947617565
## 1025 0.666666667 0.0325138284 0.8947617565
## 1110 0.666666667 0.0325138284 0.8947617565
## 1154 0.666666667 0.0325138284 0.8947617565
## 1515 0.666666667 0.0325138284 0.8947617565
## 1519 0.666666667 0.0325138284 0.8947617565
## 28   0.669298246 0.0326834554 0.9061725319
## 565  0.669298246 0.0326834554 0.9061725319
## 941  0.669298246 0.0326834554 0.9061725319
## 1340 0.669298246 0.0326834554 0.9061725319
## 1385 0.669298246 0.0326834554 0.9061725319
## 312  0.674561404 0.0320694126 0.9119043912
## 870  0.674561404 0.0320694126 0.9119043912
## 916  0.674561404 0.0320694126 0.9119043912
## 950  0.674561404 0.0320694126 0.9119043912
## 1059 0.674561404 0.0320694126 0.9119043912
## 1229 0.674561404 0.0320694126 0.9119043912
## 1355 0.674561404 0.0320694126 0.9119043912
## 188  0.678070175 0.0320849468 0.9234210526
## 236  0.678070175 0.0320849468 0.9234210526
## 472  0.678070175 0.0320849468 0.9234210526
## 759  0.678070175 0.0320849468 0.9234210526
## 1230 0.678070175 0.0320849468 0.9234210526
## 1478 0.678070175 0.0320849468 0.9234210526
## 47   0.681578947 0.0317877338 0.9292058549
## 353  0.681578947 0.0317877338 0.9292058549
## 619  0.681578947 0.0317877338 0.9292058549
## 1062 0.681578947 0.0317877338 0.9292058549
## 1449 0.681578947 0.0317877338 0.9292058549
## 803  0.685087719 0.0311836231 0.9292058549
## 1010 0.685087719 0.0311836231 0.9292058549
## 1104 0.685087719 0.0311836231 0.9292058549
## 1170 0.685087719 0.0311836231 0.9292058549
## 1446 0.685964912 0.0310337787 0.9292058549
## 15   0.693859649 0.0303156046 0.9408284024
## 114  0.693859649 0.0303156046 0.9408284024
## 183  0.693859649 0.0303156046 0.9408284024
## 192  0.693859649 0.0303156046 0.9408284024
## 248  0.693859649 0.0303156046 0.9408284024
## 344  0.693859649 0.0303156046 0.9408284024
## 510  0.693859649 0.0303156046 0.9408284024
## 567  0.693859649 0.0303156046 0.9408284024
## 571  0.693859649 0.0303156046 0.9408284024
## 1156 0.693859649 0.0303156046 0.9408284024
## 1497 0.693859649 0.0303156046 0.9408284024
## 276  0.699122807 0.0294442692 0.9408284024
## 406  0.699122807 0.0294442692 0.9408284024
## 442  0.699122807 0.0294442692 0.9408284024
## 861  0.699122807 0.0294442692 0.9408284024
## 933  0.699122807 0.0294442692 0.9408284024
## 1085 0.699122807 0.0294442692 0.9408284024
## 217  0.704385965 0.0285890064 0.9408284024
## 286  0.704385965 0.0285890064 0.9408284024
## 476  0.704385965 0.0285890064 0.9408284024
## 643  0.704385965 0.0285890064 0.9408284024
## 717  0.704385965 0.0285890064 0.9408284024
## 910  0.704385965 0.0285890064 0.9408284024
## 90   0.707017544 0.0284642623 0.9466661476
## 238  0.707017544 0.0284642623 0.9466661476
## 288  0.707017544 0.0284642623 0.9466661476
## 1288 0.707017544 0.0284642623 0.9466661476
## 5    0.712280702 0.0276291854 0.9466661476
## 356  0.712280702 0.0276291854 0.9466661476
## 379  0.712280702 0.0276291854 0.9466661476
## 407  0.712280702 0.0276291854 0.9466661476
## 715  0.712280702 0.0276291854 0.9466661476
## 1014 0.712280702 0.0276291854 0.9466661476
## 352  0.717543860 0.0271002193 0.9525215405
## 577  0.717543860 0.0271002193 0.9525215405
## 821  0.717543860 0.0271002193 0.9525215405
## 1101 0.717543860 0.0271002193 0.9525215405
## 1188 0.717543860 0.0271002193 0.9525215405
## 1228 0.717543860 0.0271002193 0.9525215405
## 1530 0.717543860 0.0271002193 0.9525215405
## 83   0.720175439 0.0266943221 0.9525215405
## 594  0.720175439 0.0266943221 0.9525215405
## 814  0.720175439 0.0266943221 0.9525215405
## 432  0.721052632 0.0265598468 0.9525215405
## 285  0.727192982 0.0259153407 0.9583945811
## 633  0.727192982 0.0259153407 0.9583945811
## 673  0.727192982 0.0259153407 0.9583945811
## 769  0.727192982 0.0259153407 0.9583945811
## 854  0.727192982 0.0259153407 0.9583945811
## 1114 0.727192982 0.0259153407 0.9583945811
## 1212 0.727192982 0.0259153407 0.9583945811
## 1380 0.727192982 0.0259153407 0.9583945811
## 383  0.733333333 0.0250013291 0.9583945811
## 939  0.733333333 0.0250013291 0.9583945811
## 1206 0.733333333 0.0250013291 0.9583945811
## 1225 0.733333333 0.0250013291 0.9583945811
## 1327 0.733333333 0.0250013291 0.9583945811
## 1525 0.733333333 0.0250013291 0.9583945811
## 1527 0.733333333 0.0250013291 0.9583945811
## 1202 0.735087719 0.0247437167 0.9583945811
## 1222 0.735087719 0.0247437167 0.9583945811
## 77   0.743859649 0.0234786854 0.9583945811
## 127  0.743859649 0.0234786854 0.9583945811
## 389  0.743859649 0.0234786854 0.9583945811
## 450  0.743859649 0.0234786854 0.9583945811
## 818  0.743859649 0.0234786854 0.9583945811
## 975  0.743859649 0.0234786854 0.9583945811
## 1029 0.743859649 0.0234786854 0.9583945811
## 1131 0.743859649 0.0234786854 0.9583945811
## 1458 0.743859649 0.0234786854 0.9583945811
## 1465 0.743859649 0.0234786854 0.9583945811
## 132  0.750877193 0.0227657594 0.9642852694
## 418  0.750877193 0.0227657594 0.9642852694
## 536  0.750877193 0.0227657594 0.9642852694
## 868  0.750877193 0.0227657594 0.9642852694
## 891  0.750877193 0.0227657594 0.9642852694
## 1183 0.750877193 0.0227657594 0.9642852694
## 1249 0.750877193 0.0227657594 0.9642852694
## 1360 0.750877193 0.0227657594 0.9642852694
## 1383 0.750877193 0.0227657594 0.9642852694
## 48   0.757017544 0.0219195211 0.9642852694
## 156  0.757017544 0.0219195211 0.9642852694
## 200  0.757017544 0.0219195211 0.9642852694
## 883  0.757017544 0.0219195211 0.9642852694
## 1256 0.757017544 0.0219195211 0.9642852694
## 1398 0.757017544 0.0219195211 0.9642852694
## 1498 0.757017544 0.0219195211 0.9642852694
## 162  0.762280702 0.0214742188 0.9701936053
## 316  0.762280702 0.0214742188 0.9701936053
## 332  0.762280702 0.0214742188 0.9701936053
## 622  0.762280702 0.0214742188 0.9701936053
## 1100 0.762280702 0.0214742188 0.9701936053
## 1198 0.762280702 0.0214742188 0.9701936053
## 1466 0.762280702 0.0214742188 0.9701936053
## 71   0.769298246 0.0215945304 0.9940034257
## 152  0.769298246 0.0215945304 0.9940034257
## 175  0.769298246 0.0215945304 0.9940034257
## 314  0.769298246 0.0215945304 0.9940034257
## 656  0.769298246 0.0215945304 0.9940034257
## 746  0.769298246 0.0215945304 0.9940034257
## 801  0.769298246 0.0215945304 0.9940034257
## 832  0.769298246 0.0215945304 0.9940034257
## 1281 0.769298246 0.0215945304 0.9940034257
## 1401 0.769298246 0.0215945304 0.9940034257
## 1425 0.769298246 0.0215945304 0.9940034257
## 1492 0.769298246 0.0215945304 0.9940034257
## 62   0.775438596 0.0207828496 0.9940034257
## 70   0.775438596 0.0207828496 0.9940034257
## 163  0.775438596 0.0207828496 0.9940034257
## 429  0.775438596 0.0207828496 0.9940034257
## 555  0.775438596 0.0207828496 0.9940034257
## 557  0.775438596 0.0207828496 0.9940034257
## 1265 0.775438596 0.0207828496 0.9940034257
## 40   0.778947368 0.0203264275 0.9940034257
## 355  0.778947368 0.0203264275 0.9940034257
## 670  0.778947368 0.0203264275 0.9940034257
## 1158 0.778947368 0.0203264275 0.9940034257
## 2    0.785087719 0.0195403663 0.9940034257
## 103  0.785087719 0.0195403663 0.9940034257
## 351  0.785087719 0.0195403663 0.9940034257
## 433  0.785087719 0.0195403663 0.9940034257
## 538  0.785087719 0.0195403663 0.9940034257
## 1150 0.785087719 0.0195403663 0.9940034257
## 1174 0.785087719 0.0195403663 0.9940034257
## 253  0.792982456 0.0185528906 0.9940034257
## 345  0.792982456 0.0185528906 0.9940034257
## 350  0.792982456 0.0185528906 0.9940034257
## 390  0.792982456 0.0185528906 0.9940034257
## 632  0.792982456 0.0185528906 0.9940034257
## 1429 0.792982456 0.0185528906 0.9940034257
## 1437 0.792982456 0.0185528906 0.9940034257
## 1473 0.792982456 0.0185528906 0.9940034257
## 1526 0.792982456 0.0185528906 0.9940034257
## 39   0.800877193 0.0175907567 0.9940034257
## 84   0.800877193 0.0175907567 0.9940034257
## 403  0.800877193 0.0175907567 0.9940034257
## 481  0.800877193 0.0175907567 0.9940034257
## 890  0.800877193 0.0175907567 0.9940034257
## 988  0.800877193 0.0175907567 0.9940034257
## 1132 0.800877193 0.0175907567 0.9940034257
## 1227 0.800877193 0.0175907567 0.9940034257
## 1300 0.800877193 0.0175907567 0.9940034257
## 431  0.807894737 0.0167561852 0.9940034257
## 551  0.807894737 0.0167561852 0.9940034257
## 559  0.807894737 0.0167561852 0.9940034257
## 836  0.807894737 0.0167561852 0.9940034257
## 860  0.807894737 0.0167561852 0.9940034257
## 1039 0.807894737 0.0167561852 0.9940034257
## 1099 0.807894737 0.0167561852 0.9940034257
## 1295 0.807894737 0.0167561852 0.9940034257
## 81   0.811403509 0.0163460205 0.9940034257
## 462  0.811403509 0.0163460205 0.9940034257
## 771  0.811403509 0.0163460205 0.9940034257
## 1149 0.811403509 0.0163460205 0.9940034257
## 80   0.821052632 0.0152419254 0.9940034257
## 82   0.821052632 0.0152419254 0.9940034257
## 313  0.821052632 0.0152419254 0.9940034257
## 524  0.821052632 0.0152419254 0.9940034257
## 530  0.821052632 0.0152419254 0.9940034257
## 564  0.821052632 0.0152419254 0.9940034257
## 716  0.821052632 0.0152419254 0.9940034257
## 945  0.821052632 0.0152419254 0.9940034257
## 1008 0.821052632 0.0152419254 0.9940034257
## 1280 0.821052632 0.0152419254 0.9940034257
## 1315 0.821052632 0.0152419254 0.9940034257
## 45   0.825438596 0.0147513769 0.9940034257
## 53   0.825438596 0.0147513769 0.9940034257
## 664  0.825438596 0.0147513769 0.9940034257
## 808  0.825438596 0.0147513769 0.9940034257
## 1028 0.825438596 0.0147513769 0.9940034257
## 213  0.832456140 0.0139808199 0.9940034257
## 374  0.832456140 0.0139808199 0.9940034257
## 668  0.832456140 0.0139808199 0.9940034257
## 880  0.832456140 0.0139808199 0.9940034257
## 884  0.832456140 0.0139808199 0.9940034257
## 1027 0.832456140 0.0139808199 0.9940034257
## 1073 0.832456140 0.0139808199 0.9940034257
## 1394 0.832456140 0.0139808199 0.9940034257
## 1372 0.834210526 0.0137908894 0.9940034257
## 1475 0.834210526 0.0137908894 0.9940034257
## 249  0.836842105 0.0135079964 0.9940034257
## 1283 0.836842105 0.0135079964 0.9940034257
## 1474 0.836842105 0.0135079964 0.9940034257
## 176  0.843859649 0.0127651983 0.9940034257
## 371  0.843859649 0.0127651983 0.9940034257
## 388  0.843859649 0.0127651983 0.9940034257
## 533  0.843859649 0.0127651983 0.9940034257
## 1058 0.843859649 0.0127651983 0.9940034257
## 1090 0.843859649 0.0127651983 0.9940034257
## 1259 0.843859649 0.0127651983 0.9940034257
## 1428 0.843859649 0.0127651983 0.9940034257
## 96   0.855263158 0.0115931592 0.9940034257
## 102  0.855263158 0.0115931592 0.9940034257
## 110  0.855263158 0.0115931592 0.9940034257
## 404  0.855263158 0.0115931592 0.9940034257
## 478  0.855263158 0.0115931592 0.9940034257
## 523  0.855263158 0.0115931592 0.9940034257
## 529  0.855263158 0.0115931592 0.9940034257
## 646  0.855263158 0.0115931592 0.9940034257
## 698  0.855263158 0.0115931592 0.9940034257
## 1082 0.855263158 0.0115931592 0.9940034257
## 1324 0.855263158 0.0115931592 0.9940034257
## 1369 0.855263158 0.0115931592 0.9940034257
## 1439 0.855263158 0.0115931592 0.9940034257
## 161  0.858771930 0.0112410178 0.9940034257
## 743  0.858771930 0.0112410178 0.9940034257
## 838  0.858771930 0.0112410178 0.9940034257
## 943  0.858771930 0.0112410178 0.9940034257
## 295  0.864912281 0.0106341331 0.9940034257
## 723  0.864912281 0.0106341331 0.9940034257
## 736  0.864912281 0.0106341331 0.9940034257
## 889  0.864912281 0.0106341331 0.9940034257
## 1250 0.864912281 0.0106341331 0.9940034257
## 1291 0.864912281 0.0106341331 0.9940034257
## 1464 0.864912281 0.0106341331 0.9940034257
## 273  0.871052632 0.0102540950 1.0000000000
## 287  0.871052632 0.0102540950 1.0000000000
## 722  0.871052632 0.0102540950 1.0000000000
## 800  0.871052632 0.0102540950 1.0000000000
## 807  0.871052632 0.0102540950 1.0000000000
## 842  0.871052632 0.0102540950 1.0000000000
## 1007 0.871052632 0.0102540950 1.0000000000
## 1440 0.871052632 0.0102540950 1.0000000000
## 16   0.878070175 0.0095848408 1.0000000000
## 334  0.878070175 0.0095848408 1.0000000000
## 598  0.878070175 0.0095848408 1.0000000000
## 601  0.878070175 0.0095848408 1.0000000000
## 699  0.878070175 0.0095848408 1.0000000000
## 936  0.878070175 0.0095848408 1.0000000000
## 1103 0.878070175 0.0095848408 1.0000000000
## 1322 0.878070175 0.0095848408 1.0000000000
## 109  0.888596491 0.0086082078 1.0000000000
## 125  0.888596491 0.0086082078 1.0000000000
## 306  0.888596491 0.0086082078 1.0000000000
## 331  0.888596491 0.0086082078 1.0000000000
## 428  0.888596491 0.0086082078 1.0000000000
## 460  0.888596491 0.0086082078 1.0000000000
## 705  0.888596491 0.0086082078 1.0000000000
## 866  0.888596491 0.0086082078 1.0000000000
## 1087 0.888596491 0.0086082078 1.0000000000
## 1221 0.888596491 0.0086082078 1.0000000000
## 1361 0.888596491 0.0086082078 1.0000000000
## 1447 0.888596491 0.0086082078 1.0000000000
## 59   0.898245614 0.0077407588 1.0000000000
## 299  0.898245614 0.0077407588 1.0000000000
## 419  0.898245614 0.0077407588 1.0000000000
## 451  0.898245614 0.0077407588 1.0000000000
## 574  0.898245614 0.0077407588 1.0000000000
## 700  0.898245614 0.0077407588 1.0000000000
## 938  0.898245614 0.0077407588 1.0000000000
## 957  0.898245614 0.0077407588 1.0000000000
## 1057 0.898245614 0.0077407588 1.0000000000
## 1471 0.898245614 0.0077407588 1.0000000000
## 1528 0.898245614 0.0077407588 1.0000000000
## 86   0.900877193 0.0075086715 1.0000000000
## 298  0.900877193 0.0075086715 1.0000000000
## 448  0.900877193 0.0075086715 1.0000000000
## 35   0.908771930 0.0068236800 1.0000000000
## 742  0.908771930 0.0068236800 1.0000000000
## 816  0.908771930 0.0068236800 1.0000000000
## 1081 0.908771930 0.0068236800 1.0000000000
## 1190 0.908771930 0.0068236800 1.0000000000
## 1395 0.908771930 0.0068236800 1.0000000000
## 1443 0.908771930 0.0068236800 1.0000000000
## 1503 0.908771930 0.0068236800 1.0000000000
## 1517 0.908771930 0.0068236800 1.0000000000
## 141  0.914912281 0.0063023674 1.0000000000
## 576  0.914912281 0.0063023674 1.0000000000
## 671  0.914912281 0.0063023674 1.0000000000
## 719  0.914912281 0.0063023674 1.0000000000
## 733  0.914912281 0.0063023674 1.0000000000
## 764  0.914912281 0.0063023674 1.0000000000
## 1282 0.914912281 0.0063023674 1.0000000000
## 421  0.917543860 0.0060819569 1.0000000000
## 501  0.917543860 0.0060819569 1.0000000000
## 502  0.917543860 0.0060819569 1.0000000000
## 520  0.924561404 0.0055028595 1.0000000000
## 662  0.924561404 0.0055028595 1.0000000000
## 721  0.924561404 0.0055028595 1.0000000000
## 985  0.924561404 0.0055028595 1.0000000000
## 1171 0.924561404 0.0055028595 1.0000000000
## 1173 0.924561404 0.0055028595 1.0000000000
## 1187 0.924561404 0.0055028595 1.0000000000
## 1441 0.924561404 0.0055028595 1.0000000000
## 24   0.929824561 0.0050766631 1.0000000000
## 211  0.929824561 0.0050766631 1.0000000000
## 725  0.929824561 0.0050766631 1.0000000000
## 962  0.929824561 0.0050766631 1.0000000000
## 1044 0.929824561 0.0050766631 1.0000000000
## 1400 0.929824561 0.0050766631 1.0000000000
## 42   0.940350877 0.0042446172 1.0000000000
## 387  0.940350877 0.0042446172 1.0000000000
## 500  0.940350877 0.0042446172 1.0000000000
## 556  0.940350877 0.0042446172 1.0000000000
## 621  0.940350877 0.0042446172 1.0000000000
## 762  0.940350877 0.0042446172 1.0000000000
## 1184 0.940350877 0.0042446172 1.0000000000
## 1257 0.940350877 0.0042446172 1.0000000000
## 1378 0.940350877 0.0042446172 1.0000000000
## 1399 0.940350877 0.0042446172 1.0000000000
## 1514 0.940350877 0.0042446172 1.0000000000
## 1516 0.940350877 0.0042446172 1.0000000000
## 180  0.949122807 0.0035713855 1.0000000000
## 458  0.949122807 0.0035713855 1.0000000000
## 553  0.949122807 0.0035713855 1.0000000000
## 596  0.949122807 0.0035713855 1.0000000000
## 784  0.949122807 0.0035713855 1.0000000000
## 788  0.949122807 0.0035713855 1.0000000000
## 1041 0.949122807 0.0035713855 1.0000000000
## 1155 0.949122807 0.0035713855 1.0000000000
## 1375 0.949122807 0.0035713855 1.0000000000
## 1500 0.949122807 0.0035713855 1.0000000000
## 731  0.953508772 0.0032414494 1.0000000000
## 789  0.953508772 0.0032414494 1.0000000000
## 1205 0.953508772 0.0032414494 1.0000000000
## 1316 0.953508772 0.0032414494 1.0000000000
## 1427 0.953508772 0.0032414494 1.0000000000
## 201  0.962280702 0.0025946028 1.0000000000
## 354  0.962280702 0.0025946028 1.0000000000
## 400  0.962280702 0.0025946028 1.0000000000
## 701  0.962280702 0.0025946028 1.0000000000
## 1017 0.962280702 0.0025946028 1.0000000000
## 1130 0.962280702 0.0025946028 1.0000000000
## 1243 0.962280702 0.0025946028 1.0000000000
## 1255 0.962280702 0.0025946028 1.0000000000
## 1299 0.962280702 0.0025946028 1.0000000000
## 1529 0.962280702 0.0025946028 1.0000000000
## 9    0.969298246 0.0020893443 1.0000000000
## 23   0.969298246 0.0020893443 1.0000000000
## 88   0.969298246 0.0020893443 1.0000000000
## 480  0.969298246 0.0020893443 1.0000000000
## 732  0.969298246 0.0020893443 1.0000000000
## 1061 0.969298246 0.0020893443 1.0000000000
## 1185 0.969298246 0.0020893443 1.0000000000
## 1524 0.969298246 0.0020893443 1.0000000000
## 140  0.975438596 0.0016559321 1.0000000000
## 254  0.975438596 0.0016559321 1.0000000000
## 399  0.975438596 0.0016559321 1.0000000000
## 498  0.975438596 0.0016559321 1.0000000000
## 796  0.975438596 0.0016559321 1.0000000000
## 1107 0.975438596 0.0016559321 1.0000000000
## 1499 0.975438596 0.0016559321 1.0000000000
## 454  0.980701754 0.0012907566 1.0000000000
## 718  0.980701754 0.0012907566 1.0000000000
## 1037 0.980701754 0.0012907566 1.0000000000
## 1323 0.980701754 0.0012907566 1.0000000000
## 1426 0.980701754 0.0012907566 1.0000000000
## 1452 0.980701754 0.0012907566 1.0000000000
## 552  0.982456140 0.0011703088 1.0000000000
## 965  0.982456140 0.0011703088 1.0000000000
## 79   0.992105263 0.0005190491 1.0000000000
## 277  0.992105263 0.0005190491 1.0000000000
## 427  0.992105263 0.0005190491 1.0000000000
## 499  0.992105263 0.0005190491 1.0000000000
## 934  0.992105263 0.0005190491 1.0000000000
## 968  0.992105263 0.0005190491 1.0000000000
## 986  0.992105263 0.0005190491 1.0000000000
## 1032 0.992105263 0.0005190491 1.0000000000
## 1176 0.992105263 0.0005190491 1.0000000000
## 1203 0.992105263 0.0005190491 1.0000000000
## 1358 0.992105263 0.0005190491 1.0000000000
## 376  0.994736842 0.0003446717 1.0000000000
## 453  0.994736842 0.0003446717 1.0000000000
## 1245 0.994736842 0.0003446717 1.0000000000
## 209  0.998245614 0.0001142898 1.0000000000
## 328  0.998245614 0.0001142898 1.0000000000
## 704  0.998245614 0.0001142898 1.0000000000
## 839  0.998245614 0.0001142898 1.0000000000
## 108  1.000000000 0.0000000000 1.0000000000
## 1084 1.000000000 0.0000000000 1.0000000000
## 
## 
## [[1]]$optres
## [[1]]$optres$Group1
##                Score        CI
## SENS           0.741  0.7-0.78
## SPEC           0.722  0.7-0.75
## MCC            0.413      <NA>
## Informedness   0.463      <NA>
## PREC           0.477 0.44-0.52
## NPV            0.891 0.87-0.91
## FPR            0.278      <NA>
## F1             0.580      <NA>
## TP           289.000      <NA>
## FP           317.000      <NA>
## TN           823.000      <NA>
## FN           101.000      <NA>
## AUC-ROC        0.820 0.79-0.85
## AUC-PR         0.630      <NA>
## AUC-PRG        0.170      <NA>
## 
## 
## [[1]]$stdres
## [[1]]$stdres$Group1
##                Score        CI
## SENS           0.574 0.52-0.62
## SPEC           0.854 0.83-0.87
## MCC            0.428      <NA>
## Informedness   0.428      <NA>
## PREC           0.573 0.52-0.62
## NPV            0.854 0.83-0.87
## FPR            0.146      <NA>
## F1             0.574      <NA>
## TP           224.000      <NA>
## FP           167.000      <NA>
## TN           973.000      <NA>
## FN           166.000      <NA>
## AUC-ROC        0.820 0.79-0.85
## AUC-PR         0.630      <NA>
## AUC-PRG        0.170      <NA>
## 
## 
## 
## [[2]]
## [[2]]$roc

## 
## [[2]]$proc

## 
## [[2]]$prg

## 
## [[2]]$cc

## 
## [[2]]$probs
## [[2]]$probs$Group1
##       one  zero  obs  Group TP TN FP FN      SENS       SPEC Informedness
## 163 0.942 0.058  one Group1  1 28  0  8 0.1111111 1.00000000   0.11111111
## 151 0.828 0.172  one Group1  2 28  0  7 0.2222222 1.00000000   0.22222222
## 150 0.704 0.296  one Group1  3 28  0  6 0.3333333 1.00000000   0.33333333
## 93  0.700 0.300 zero Group1  3 27  1  6 0.3333333 0.96428571   0.29761905
## 168 0.686 0.314  one Group1  4 27  1  5 0.4444444 0.96428571   0.40873016
## 39  0.610 0.390 zero Group1  4 26  2  5 0.4444444 0.92857143   0.37301587
## 159 0.554 0.446  one Group1  5 26  2  4 0.5555556 0.92857143   0.48412698
## 56  0.532 0.468 zero Group1  5 25  3  4 0.5555556 0.89285714   0.44841270
## 146 0.522 0.478  one Group1  6 25  3  3 0.6666667 0.89285714   0.55952381
## 141 0.496 0.504 zero Group1  6 24  4  3 0.6666667 0.85714286   0.52380952
## 149 0.494 0.506  one Group1  7 24  4  2 0.7777778 0.85714286   0.63492063
## 76  0.478 0.522 zero Group1  7 23  5  2 0.7777778 0.82142857   0.59920635
## 27  0.476 0.524 zero Group1  7 22  6  2 0.7777778 0.78571429   0.56349206
## 96  0.378 0.622 zero Group1  7 21  7  2 0.7777778 0.75000000   0.52777778
## 174 0.336 0.664  one Group1  8 21  7  1 0.8888889 0.75000000   0.63888889
## 29  0.324 0.676 zero Group1  8 20  8  1 0.8888889 0.71428571   0.60317460
## 18  0.284 0.716 zero Group1  8 19  9  1 0.8888889 0.67857143   0.56746032
## 80  0.250 0.750 zero Group1  8 18 10  1 0.8888889 0.64285714   0.53174603
## 31  0.244 0.756 zero Group1  8 17 11  1 0.8888889 0.60714286   0.49603175
## 14  0.222 0.778 zero Group1  8 16 12  1 0.8888889 0.57142857   0.46031746
## 87  0.214 0.786 zero Group1  8 15 13  1 0.8888889 0.53571429   0.42460317
## 68  0.162 0.838 zero Group1  9 14 14  0 1.0000000 0.50000000   0.50000000
## 154 0.162 0.838  one Group1  9 14 14  0 1.0000000 0.50000000   0.50000000
## 63  0.158 0.842 zero Group1  9 13 15  0 1.0000000 0.46428571   0.46428571
## 62  0.118 0.882 zero Group1  9 12 16  0 1.0000000 0.42857143   0.42857143
## 41  0.112 0.888 zero Group1  9 11 17  0 1.0000000 0.39285714   0.39285714
## 36  0.094 0.906 zero Group1  9  9 19  0 1.0000000 0.32142857   0.32142857
## 138 0.094 0.906 zero Group1  9  9 19  0 1.0000000 0.32142857   0.32142857
## 10  0.092 0.908 zero Group1  9  8 20  0 1.0000000 0.28571429   0.28571429
## 127 0.090 0.910 zero Group1  9  7 21  0 1.0000000 0.25000000   0.25000000
## 49  0.082 0.918 zero Group1  9  6 22  0 1.0000000 0.21428571   0.21428571
## 71  0.066 0.934 zero Group1  9  5 23  0 1.0000000 0.17857143   0.17857143
## 8   0.058 0.942 zero Group1  9  4 24  0 1.0000000 0.14285714   0.14285714
## 59  0.056 0.944 zero Group1  9  3 25  0 1.0000000 0.10714286   0.10714286
## 61  0.044 0.956 zero Group1  9  2 26  0 1.0000000 0.07142857   0.07142857
## 110 0.034 0.966 zero Group1  9  1 27  0 1.0000000 0.03571429   0.03571429
## 9   0.020 0.980 zero Group1  9  0 28  0 1.0000000 0.00000000   0.00000000
##          PREC       NPV      MARK        F1        MCC        FPR          PG
## 163 1.0000000 0.7777778 0.7777778 0.2000000 0.29397237 0.00000000 1.000000000
## 151 1.0000000 0.8000000 0.8000000 0.3636364 0.42163702 0.00000000 1.000000000
## 150 1.0000000 0.8235294 0.8235294 0.5000000 0.52393683 0.00000000 1.000000000
## 93  0.7500000 0.8181818 0.5681818 0.4615385 0.41121981 0.03571429 0.502232143
## 168 0.8000000 0.8437500 0.6437500 0.5714286 0.51295228 0.03571429 0.588571429
## 39  0.6666667 0.8387097 0.5053763 0.5333333 0.43418130 0.07142857 0.373015873
## 159 0.7142857 0.8666667 0.5809524 0.6250000 0.53033454 0.07142857 0.444606414
## 56  0.6250000 0.8620690 0.4870690 0.5882353 0.46734132 0.10714286 0.315290179
## 146 0.6666667 0.8928571 0.5595238 0.6666667 0.55952381 0.10714286 0.373015873
## 141 0.6000000 0.8888889 0.4888889 0.6315789 0.50604808 0.14285714 0.282857143
## 149 0.6363636 0.9230769 0.5594406 0.7000000 0.59598688 0.14285714 0.330578512
## 76  0.5833333 0.9200000 0.5033333 0.6666667 0.54918169 0.17857143 0.262152778
## 27  0.5384615 0.9166667 0.4551282 0.6363636 0.50641992 0.21428571 0.210059172
## 96  0.5000000 0.9130435 0.4130435 0.6086957 0.46689953 0.25000000 0.169642857
## 174 0.5333333 0.9545455 0.4878788 0.6666667 0.55830130 0.25000000 0.204444444
## 29  0.5000000 0.9523810 0.4523810 0.6400000 0.52236453 0.28571429 0.169642857
## 18  0.4705882 0.9500000 0.4205882 0.6153846 0.48853570 0.32142857 0.141374197
## 80  0.4444444 0.9473684 0.3918129 0.5925926 0.45644817 0.35714286 0.118165785
## 31  0.4210526 0.9444444 0.3654971 0.5714286 0.42579121 0.39285714 0.098931539
## 14  0.4000000 0.9411765 0.3411765 0.5517241 0.39629470 0.42857143 0.082857143
## 87  0.3809524 0.9375000 0.3184524 0.5333333 0.36771714 0.46428571 0.069322967
## 68  0.3913043 1.0000000 0.3913043 0.5625000 0.44232587 0.50000000 0.076559546
## 154 0.3913043 1.0000000 0.3913043 0.5625000 0.44232587 0.50000000 0.076559546
## 63  0.3750000 1.0000000 0.3750000 0.5454545 0.41726148 0.53571429 0.065290179
## 62  0.3600000 1.0000000 0.3600000 0.5294118 0.39279220 0.57142857 0.055542857
## 41  0.3461538 1.0000000 0.3461538 0.5142857 0.36876688 0.60714286 0.047073119
## 36  0.3214286 1.0000000 0.3214286 0.4864865 0.32142857 0.67857143 0.033208819
## 138 0.3214286 1.0000000 0.3214286 0.4864865 0.32142857 0.67857143 0.033208819
## 10  0.3103448 1.0000000 0.3103448 0.4736842 0.29777500 0.71428571 0.027518261
## 127 0.3000000 1.0000000 0.3000000 0.4615385 0.27386128 0.75000000 0.022500000
## 49  0.2903226 1.0000000 0.2903226 0.4500000 0.24942330 0.78571429 0.018061543
## 71  0.2812500 1.0000000 0.2812500 0.4390244 0.22410536 0.82142857 0.014125279
## 8   0.2727273 1.0000000 0.2727273 0.4285714 0.19738551 0.85714286 0.010625738
## 59  0.2647059 1.0000000 0.2647059 0.4186047 0.16840827 0.89285714 0.007507415
## 61  0.2571429 1.0000000 0.2571429 0.4090909 0.13552619 0.92857143 0.004723032
## 110 0.2500000 1.0000000 0.2500000 0.4000000 0.09449112 0.96428571 0.002232143
## 9   0.2432432 0.0000000       NaN 0.3913043        NaN 1.00000000 0.000000000
##             RG
## 163 0.00000000
## 151 0.00000000
## 150 0.03968254
## 93  0.03968254
## 168 0.11816578
## 39  0.11816578
## 159 0.22927690
## 56  0.22927690
## 146 0.37301587
## 141 0.37301587
## 149 0.54938272
## 76  0.54938272
## 27  0.54938272
## 96  0.54938272
## 174 0.75837743
## 29  0.75837743
## 18  0.75837743
## 80  0.75837743
## 31  0.75837743
## 14  0.75837743
## 87  0.75837743
## 68  1.00000000
## 154 1.00000000
## 63  1.00000000
## 62  1.00000000
## 41  1.00000000
## 36  1.00000000
## 138 1.00000000
## 10  1.00000000
## 127 1.00000000
## 49  1.00000000
## 71  1.00000000
## 8   1.00000000
## 59  1.00000000
## 61  1.00000000
## 110 1.00000000
## 9   1.00000000
## 
## 
## [[2]]$optres
## [[2]]$optres$Group1
##               Score        CI
## SENS          0.889 0.57-0.98
## SPEC          0.750 0.57-0.87
## MCC           0.558      <NA>
## Informedness  0.639      <NA>
## PREC          0.533  0.3-0.75
## NPV           0.955 0.78-0.99
## FPR           0.250      <NA>
## F1            0.667      <NA>
## TP            8.000      <NA>
## FP            7.000      <NA>
## TN           21.000      <NA>
## FN            1.000      <NA>
## AUC-ROC       0.880 0.73-1.03
## AUC-PR        0.630      <NA>
## AUC-PRG       0.300      <NA>
## 
## 
## [[2]]$stdres
## [[2]]$stdres$Group1
##               Score        CI
## SENS          0.667 0.35-0.88
## SPEC          0.893 0.73-0.96
## MCC           0.560      <NA>
## Informedness  0.560      <NA>
## PREC          0.667 0.35-0.88
## NPV           0.893 0.73-0.96
## FPR           0.107      <NA>
## F1            0.667      <NA>
## TP            6.000      <NA>
## FP            3.000      <NA>
## TN           25.000      <NA>
## FN            3.000      <NA>
## AUC-ROC       0.880 0.73-1.03
## AUC-PR        0.630      <NA>
## AUC-PRG       0.300      <NA>

xgboost

viz_perf_f(model_m=xgb_m,
           testdat=testSet1,
           bin_num=10)

## [[1]]
## [[1]]$roc

## 
## [[1]]$proc

## 
## [[1]]$prg

## 
## [[1]]$cc

## 
## [[1]]$probs
## [[1]]$probs$Group1
##               one        zero  obs  Group  TP   TN   FP  FN        SENS
## 825  9.986901e-01 0.001309931 zero Group1   0 1139    1 390 0.000000000
## 1332 9.982882e-01 0.001711786  one Group1   1 1139    1 389 0.002564103
## 972  9.979361e-01 0.002063870  one Group1   2 1139    1 388 0.005128205
## 167  9.955930e-01 0.004406989  one Group1   3 1139    1 387 0.007692308
## 1456 9.948873e-01 0.005112708  one Group1   4 1139    1 386 0.010256410
## 114  9.947601e-01 0.005239904  one Group1   5 1139    1 385 0.012820513
## 20   9.942003e-01 0.005799651  one Group1   6 1139    1 384 0.015384615
## 1003 9.940971e-01 0.005902886  one Group1   7 1139    1 383 0.017948718
## 445  9.934264e-01 0.006573558  one Group1   8 1139    1 382 0.020512821
## 1092 9.926359e-01 0.007364094  one Group1   9 1139    1 381 0.023076923
## 557  9.923906e-01 0.007609427  one Group1  10 1139    1 380 0.025641026
## 932  9.922272e-01 0.007772803  one Group1  11 1139    1 379 0.028205128
## 281  9.917379e-01 0.008262098  one Group1  12 1139    1 378 0.030769231
## 1458 9.916985e-01 0.008301497  one Group1  13 1139    1 377 0.033333333
## 27   9.913304e-01 0.008669615  one Group1  14 1139    1 376 0.035897436
## 360  9.912992e-01 0.008700788 zero Group1  14 1138    2 376 0.035897436
## 1217 9.900537e-01 0.009946346  one Group1  15 1138    2 375 0.038461538
## 5    9.899530e-01 0.010047019  one Group1  16 1138    2 374 0.041025641
## 111  9.892727e-01 0.010727286  one Group1  17 1138    2 373 0.043589744
## 1416 9.892602e-01 0.010739803  one Group1  18 1138    2 372 0.046153846
## 295  9.888265e-01 0.011173487  one Group1  19 1138    2 371 0.048717949
## 1411 9.884476e-01 0.011552393  one Group1  20 1138    2 370 0.051282051
## 845  9.881878e-01 0.011812150  one Group1  21 1138    2 369 0.053846154
## 34   9.881307e-01 0.011869311  one Group1  22 1138    2 368 0.056410256
## 849  9.879196e-01 0.012080431  one Group1  23 1138    2 367 0.058974359
## 1067 9.877800e-01 0.012220025 zero Group1  23 1137    3 367 0.058974359
## 206  9.876239e-01 0.012376070  one Group1  24 1137    3 366 0.061538462
## 1415 9.875804e-01 0.012419581  one Group1  25 1137    3 365 0.064102564
## 132  9.875312e-01 0.012468755  one Group1  26 1137    3 364 0.066666667
## 439  9.871388e-01 0.012861192  one Group1  27 1137    3 363 0.069230769
## 1170 9.863024e-01 0.013697565  one Group1  28 1137    3 362 0.071794872
## 297  9.860799e-01 0.013920128  one Group1  29 1137    3 361 0.074358974
## 1420 9.859758e-01 0.014024198  one Group1  30 1137    3 360 0.076923077
## 688  9.857287e-01 0.014271319  one Group1  31 1137    3 359 0.079487179
## 249  9.847424e-01 0.015257597  one Group1  32 1137    3 358 0.082051282
## 442  9.846857e-01 0.015314341  one Group1  33 1137    3 357 0.084615385
## 1490 9.828185e-01 0.017181456  one Group1  34 1137    3 356 0.087179487
## 211  9.826422e-01 0.017357826  one Group1  35 1137    3 355 0.089743590
## 686  9.817706e-01 0.018229425  one Group1  36 1137    3 354 0.092307692
## 968  9.811732e-01 0.018826783  one Group1  37 1137    3 353 0.094871795
## 1369 9.810693e-01 0.018930674  one Group1  38 1137    3 352 0.097435897
## 91   9.810663e-01 0.018933654  one Group1  39 1137    3 351 0.100000000
## 1047 9.809383e-01 0.019061685  one Group1  40 1137    3 350 0.102564103
## 104  9.808928e-01 0.019107223  one Group1  41 1137    3 349 0.105128205
## 782  9.804559e-01 0.019544125 zero Group1  41 1136    4 349 0.105128205
## 565  9.798644e-01 0.020135641  one Group1  42 1136    4 348 0.107692308
## 1090 9.795170e-01 0.020483017  one Group1  43 1136    4 347 0.110256410
## 99   9.794490e-01 0.020550966  one Group1  44 1136    4 346 0.112820513
## 1451 9.785573e-01 0.021442711  one Group1  45 1136    4 345 0.115384615
## 801  9.780477e-01 0.021952271  one Group1  46 1136    4 344 0.117948718
## 487  9.778305e-01 0.022169530  one Group1  47 1136    4 343 0.120512821
## 620  9.772778e-01 0.022722185 zero Group1  47 1135    5 343 0.120512821
## 306  9.770924e-01 0.022907615  one Group1  48 1135    5 342 0.123076923
## 1168 9.765558e-01 0.023444235  one Group1  49 1135    5 341 0.125641026
## 903  9.763158e-01 0.023684204 zero Group1  49 1134    6 341 0.125641026
## 729  9.746411e-01 0.025358915  one Group1  50 1134    6 340 0.128205128
## 282  9.736362e-01 0.026363790 zero Group1  50 1133    7 340 0.128205128
## 299  9.733482e-01 0.026651800  one Group1  51 1133    7 339 0.130769231
## 1414 9.732080e-01 0.026792049  one Group1  52 1133    7 338 0.133333333
## 276  9.726626e-01 0.027337372 zero Group1  52 1132    8 338 0.133333333
## 265  9.725233e-01 0.027476668  one Group1  53 1132    8 337 0.135897436
## 1339 9.717901e-01 0.028209865  one Group1  54 1132    8 336 0.138461538
## 1335 9.714816e-01 0.028518438  one Group1  55 1132    8 335 0.141025641
## 75   9.712946e-01 0.028705418  one Group1  56 1132    8 334 0.143589744
## 152  9.702764e-01 0.029723585  one Group1  57 1132    8 333 0.146153846
## 1089 9.697831e-01 0.030216932  one Group1  58 1132    8 332 0.148717949
## 811  9.692749e-01 0.030725121  one Group1  59 1132    8 331 0.151282051
## 926  9.692538e-01 0.030746162  one Group1  60 1132    8 330 0.153846154
## 1049 9.683833e-01 0.031616688  one Group1  61 1132    8 329 0.156410256
## 444  9.675896e-01 0.032410383  one Group1  62 1132    8 328 0.158974359
## 1099 9.671645e-01 0.032835543 zero Group1  62 1131    9 328 0.158974359
## 66   9.668842e-01 0.033115804  one Group1  63 1131    9 327 0.161538462
## 216  9.668205e-01 0.033179522  one Group1  64 1131    9 326 0.164102564
## 438  9.662185e-01 0.033781469  one Group1  65 1131    9 325 0.166666667
## 14   9.662066e-01 0.033793449  one Group1  66 1131    9 324 0.169230769
## 1051 9.656103e-01 0.034389734  one Group1  67 1131    9 323 0.171794872
## 1291 9.649463e-01 0.035053730  one Group1  68 1131    9 322 0.174358974
## 109  9.640631e-01 0.035936892  one Group1  69 1131    9 321 0.176923077
## 62   9.637951e-01 0.036204934  one Group1  70 1131    9 320 0.179487179
## 605  9.636350e-01 0.036365032  one Group1  71 1131    9 319 0.182051282
## 80   9.627906e-01 0.037209392  one Group1  72 1131    9 318 0.184615385
## 1093 9.627327e-01 0.037267268  one Group1  73 1131    9 317 0.187179487
## 1055 9.616787e-01 0.038321316  one Group1  74 1131    9 316 0.189743590
## 221  9.612066e-01 0.038793445  one Group1  75 1131    9 315 0.192307692
## 213  9.610682e-01 0.038931787  one Group1  76 1131    9 314 0.194871795
## 1337 9.609919e-01 0.039008081  one Group1  77 1131    9 313 0.197435897
## 1340 9.605713e-01 0.039428651  one Group1  78 1131    9 312 0.200000000
## 1125 9.603187e-01 0.039681256  one Group1  79 1131    9 311 0.202564103
## 598  9.567363e-01 0.043263733  one Group1  80 1131    9 310 0.205128205
## 683  9.564884e-01 0.043511569  one Group1  81 1131    9 309 0.207692308
## 175  9.558609e-01 0.044139147  one Group1  82 1131    9 308 0.210256410
## 809  9.556503e-01 0.044349730  one Group1  83 1131    9 307 0.212820513
## 235  9.549742e-01 0.045025826  one Group1  84 1131    9 306 0.215384615
## 806  9.548544e-01 0.045145571  one Group1  85 1131    9 305 0.217948718
## 1253 9.538993e-01 0.046100676 zero Group1  85 1130   10 305 0.217948718
## 1006 9.507461e-01 0.049253881  one Group1  86 1130   10 304 0.220512821
## 928  9.503129e-01 0.049687088  one Group1  87 1130   10 303 0.223076923
## 1370 9.493014e-01 0.050698638  one Group1  88 1130   10 302 0.225641026
## 500  9.489817e-01 0.051018298 zero Group1  88 1129   11 302 0.225641026
## 1212 9.459085e-01 0.054091513  one Group1  89 1129   11 301 0.228205128
## 97   9.452731e-01 0.054726899  one Group1  90 1129   11 300 0.230769231
## 720  9.452264e-01 0.054773629  one Group1  91 1129   11 299 0.233333333
## 159  9.449015e-01 0.055098474  one Group1  92 1129   11 298 0.235897436
## 52   9.435400e-01 0.056459963  one Group1  93 1129   11 297 0.238461538
## 727  9.429196e-01 0.057080388  one Group1  94 1129   11 296 0.241025641
## 479  9.424953e-01 0.057504654  one Group1  95 1129   11 295 0.243589744
## 285  9.393786e-01 0.060621440  one Group1  96 1129   11 294 0.246153846
## 217  9.375983e-01 0.062401652  one Group1  97 1129   11 293 0.248717949
## 395  9.372731e-01 0.062726915  one Group1  98 1129   11 292 0.251282051
## 353  9.372241e-01 0.062775850  one Group1  99 1129   11 291 0.253846154
## 830  9.365593e-01 0.063440681 zero Group1  99 1128   12 291 0.253846154
## 51   9.350108e-01 0.064989209  one Group1 100 1128   12 290 0.256410256
## 966  9.348416e-01 0.065158367  one Group1 101 1128   12 289 0.258974359
## 313  9.341769e-01 0.065823078  one Group1 102 1128   12 288 0.261538462
## 705  9.339848e-01 0.066015184 zero Group1 102 1127   13 288 0.261538462
## 606  9.320529e-01 0.067947149  one Group1 103 1127   13 287 0.264102564
## 1413 9.320169e-01 0.067983091  one Group1 104 1127   13 286 0.266666667
## 283  9.319637e-01 0.068036318  one Group1 105 1127   13 285 0.269230769
## 138  9.316293e-01 0.068370700  one Group1 106 1127   13 284 0.271794872
## 29   9.285101e-01 0.071489871  one Group1 107 1127   13 283 0.274358974
## 725  9.280449e-01 0.071955085  one Group1 108 1127   13 282 0.276923077
## 147  9.277026e-01 0.072297394 zero Group1 108 1126   14 282 0.276923077
## 1247 9.271120e-01 0.072887957  one Group1 109 1126   14 281 0.279487179
## 64   9.265836e-01 0.073416352  one Group1 110 1126   14 280 0.282051282
## 682  9.226699e-01 0.077330053  one Group1 111 1126   14 279 0.284615385
## 241  9.197198e-01 0.080280185  one Group1 112 1126   14 278 0.287179487
## 761  9.194830e-01 0.080516994  one Group1 113 1126   14 277 0.289743590
## 23   9.191565e-01 0.080843508  one Group1 115 1126   14 275 0.294871795
## 148  9.191565e-01 0.080843508  one Group1 115 1126   14 275 0.294871795
## 807  9.176443e-01 0.082355678  one Group1 116 1126   14 274 0.297435897
## 1269 9.172751e-01 0.082724929 zero Group1 116 1125   15 274 0.297435897
## 284  9.172254e-01 0.082774580  one Group1 117 1125   15 273 0.300000000
## 804  9.168107e-01 0.083189309  one Group1 118 1125   15 272 0.302564103
## 1248 9.142709e-01 0.085729063  one Group1 119 1125   15 271 0.305128205
## 205  9.135137e-01 0.086486340 zero Group1 119 1124   16 271 0.305128205
## 204  9.058411e-01 0.094158947  one Group1 120 1124   16 270 0.307692308
## 934  9.041784e-01 0.095821619  one Group1 121 1124   16 269 0.310256410
## 560  9.041508e-01 0.095849216  one Group1 122 1124   16 268 0.312820513
## 301  9.028637e-01 0.097136259  one Group1 123 1124   16 267 0.315384615
## 1048 9.022632e-01 0.097736776  one Group1 124 1124   16 266 0.317948718
## 1421 8.987180e-01 0.101282001  one Group1 125 1124   16 265 0.320512821
## 1464 8.976349e-01 0.102365136 zero Group1 125 1123   17 265 0.320512821
## 1046 8.964400e-01 0.103559971  one Group1 126 1123   17 264 0.323076923
## 563  8.958241e-01 0.104175866  one Group1 127 1123   17 263 0.325641026
## 416  8.951995e-01 0.104800522 zero Group1 127 1122   18 263 0.325641026
## 1097 8.951623e-01 0.104837716  one Group1 128 1122   18 262 0.328205128
## 772  8.942541e-01 0.105745852 zero Group1 128 1121   19 262 0.328205128
## 511  8.940327e-01 0.105967283 zero Group1 128 1120   20 262 0.328205128
## 210  8.922069e-01 0.107793093  one Group1 129 1120   20 261 0.330769231
## 971  8.876563e-01 0.112343669  one Group1 130 1120   20 260 0.333333333
## 266  8.870925e-01 0.112907469 zero Group1 130 1119   21 260 0.333333333
## 193  8.870528e-01 0.112947226 zero Group1 130 1118   22 260 0.333333333
## 639  8.841015e-01 0.115898490  one Group1 131 1118   22 259 0.335897436
## 578  8.818106e-01 0.118189394 zero Group1 131 1117   23 259 0.335897436
## 57   8.803936e-01 0.119606435  one Group1 132 1117   23 258 0.338461538
## 486  8.795386e-01 0.120461404  one Group1 133 1117   23 257 0.341025641
## 1388 8.786676e-01 0.121332407 zero Group1 133 1116   24 257 0.341025641
## 413  8.782987e-01 0.121701300 zero Group1 133 1115   25 257 0.341025641
## 724  8.763809e-01 0.123619139  one Group1 134 1115   25 256 0.343589744
## 1094 8.742188e-01 0.125781178  one Group1 135 1115   25 255 0.346153846
## 841  8.733016e-01 0.126698375  one Group1 136 1115   25 254 0.348717949
## 1418 8.715404e-01 0.128459573  one Group1 137 1115   25 253 0.351282051
## 68   8.687484e-01 0.131251633  one Group1 138 1115   25 252 0.353846154
## 803  8.684927e-01 0.131507277  one Group1 139 1115   25 251 0.356410256
## 1149 8.655896e-01 0.134410381 zero Group1 139 1114   26 251 0.356410256
## 738  8.645198e-01 0.135480225 zero Group1 139 1113   27 251 0.356410256
## 1330 8.616431e-01 0.138356864  one Group1 140 1113   27 250 0.358974359
## 1268 8.613508e-01 0.138649225 zero Group1 140 1112   28 250 0.358974359
## 1156 8.610235e-01 0.138976514 zero Group1 140 1111   29 250 0.358974359
## 33   8.601862e-01 0.139813781  one Group1 141 1111   29 249 0.361538462
## 495  8.587683e-01 0.141231656 zero Group1 141 1110   30 249 0.361538462
## 760  8.574461e-01 0.142553866  one Group1 142 1110   30 248 0.364102564
## 250  8.558233e-01 0.144176722  one Group1 143 1110   30 247 0.366666667
## 866  8.493347e-01 0.150665283 zero Group1 143 1109   31 247 0.366666667
## 755  8.459907e-01 0.154009342 zero Group1 143 1108   32 247 0.366666667
## 436  8.447616e-01 0.155238450  one Group1 144 1108   32 246 0.369230769
## 161  8.447299e-01 0.155270100  one Group1 145 1108   32 245 0.371794872
## 793  8.445203e-01 0.155479729 zero Group1 145 1107   33 245 0.371794872
## 876  8.432480e-01 0.156752050 zero Group1 145 1106   34 245 0.371794872
## 884  8.429278e-01 0.157072246  one Group1 146 1106   34 244 0.374358974
## 661  8.408189e-01 0.159181118 zero Group1 146 1105   35 244 0.374358974
## 304  8.402441e-01 0.159755886  one Group1 147 1105   35 243 0.376923077
## 1314 8.395351e-01 0.160464883 zero Group1 147 1104   36 243 0.376923077
## 668  8.392268e-01 0.160773158 zero Group1 147 1103   37 243 0.376923077
## 329  8.388228e-01 0.161177218 zero Group1 147 1102   38 243 0.376923077
## 482  8.369343e-01 0.163065732  one Group1 148 1102   38 242 0.379487179
## 324  8.366674e-01 0.163332582 zero Group1 148 1101   39 242 0.379487179
## 1174 8.359457e-01 0.164054334  one Group1 149 1101   39 241 0.382051282
## 1376 8.346253e-01 0.165374696 zero Group1 149 1100   40 241 0.382051282
## 440  8.336532e-01 0.166346788  one Group1 150 1100   40 240 0.384615385
## 400  8.332736e-01 0.166726410  one Group1 151 1100   40 239 0.387179487
## 465  8.326261e-01 0.167373896 zero Group1 151 1099   41 239 0.387179487
## 1297 8.322155e-01 0.167784452  one Group1 152 1099   41 238 0.389743590
## 452  8.303056e-01 0.169694364 zero Group1 152 1098   42 238 0.389743590
## 296  8.300523e-01 0.169947743  one Group1 153 1098   42 237 0.392307692
## 538  8.282853e-01 0.171714664 zero Group1 153 1097   43 237 0.392307692
## 225  8.273709e-01 0.172629058  one Group1 154 1097   43 236 0.394871795
## 1338 8.267273e-01 0.173272669  one Group1 155 1097   43 235 0.397435897
## 721  8.254911e-01 0.174508870  one Group1 156 1097   43 234 0.400000000
## 1505 8.253612e-01 0.174638808 zero Group1 156 1096   44 234 0.400000000
## 1177 8.239230e-01 0.176077008  one Group1 157 1096   44 233 0.402564103
## 566  8.238137e-01 0.176186264  one Group1 158 1096   44 232 0.405128205
## 983  8.226845e-01 0.177315474 zero Group1 158 1095   45 232 0.405128205
## 1172 8.225818e-01 0.177418232  one Group1 159 1095   45 231 0.407692308
## 1311 8.218260e-01 0.178174019 zero Group1 159 1094   46 231 0.407692308
## 228  8.179449e-01 0.182055116  one Group1 160 1094   46 230 0.410256410
## 996  8.176045e-01 0.182395518 zero Group1 160 1093   47 230 0.410256410
## 196  8.165095e-01 0.183490515  one Group1 161 1093   47 229 0.412820513
## 644  8.145952e-01 0.185404837 zero Group1 161 1092   48 229 0.412820513
## 224  8.115931e-01 0.188406885 zero Group1 161 1091   49 229 0.412820513
## 1319 8.115494e-01 0.188450575 zero Group1 161 1090   50 229 0.412820513
## 621  8.103887e-01 0.189611256 zero Group1 161 1089   51 229 0.412820513
## 602  8.099689e-01 0.190031111  one Group1 162 1089   51 228 0.415384615
## 909  8.095318e-01 0.190468192 zero Group1 162 1088   52 228 0.415384615
## 112  8.076097e-01 0.192390323 zero Group1 162 1087   53 228 0.415384615
## 1460 8.072605e-01 0.192739546  one Group1 163 1087   53 227 0.417948718
## 925  8.046990e-01 0.195300996  one Group1 164 1087   53 226 0.420512821
## 258  8.041747e-01 0.195825279  one Group1 165 1087   53 225 0.423076923
## 846  8.010134e-01 0.198986590  one Group1 166 1087   53 224 0.425641026
## 230  8.004267e-01 0.199573278  one Group1 167 1087   53 223 0.428205128
## 1334 7.996412e-01 0.200358808  one Group1 168 1087   53 222 0.430769231
## 269  7.948771e-01 0.205122948 zero Group1 168 1086   54 222 0.430769231
## 1127 7.941869e-01 0.205813110  one Group1 169 1086   54 221 0.433333333
## 528  7.931892e-01 0.206810772 zero Group1 169 1085   55 221 0.433333333
## 253  7.928811e-01 0.207118928  one Group1 170 1085   55 220 0.435897436
## 1210 7.927609e-01 0.207239091  one Group1 171 1085   55 219 0.438461538
## 1001 7.919810e-01 0.208018959 zero Group1 171 1084   56 219 0.438461538
## 223  7.907362e-01 0.209263802 zero Group1 171 1083   57 219 0.438461538
## 812  7.887846e-01 0.211215436  one Group1 172 1083   57 218 0.441025641
## 1432 7.879267e-01 0.212073326 zero Group1 172 1082   58 218 0.441025641
## 1482 7.863672e-01 0.213632822 zero Group1 172 1081   59 218 0.441025641
## 850  7.798412e-01 0.220158815  one Group1 173 1081   59 217 0.443589744
## 1461 7.797253e-01 0.220274746  one Group1 174 1081   59 216 0.446153846
## 684  7.775075e-01 0.222492456  one Group1 175 1081   59 215 0.448717949
## 1091 7.758546e-01 0.224145412  one Group1 176 1081   59 214 0.451282051
## 136  7.749016e-01 0.225098431  one Group1 177 1081   59 213 0.453846154
## 703  7.714427e-01 0.228557289 zero Group1 177 1080   60 213 0.453846154
## 1238 7.702876e-01 0.229712427 zero Group1 177 1079   61 213 0.453846154
## 889  7.702289e-01 0.229771137 zero Group1 177 1078   62 213 0.453846154
## 1292 7.699786e-01 0.230021358  one Group1 178 1078   62 212 0.456410256
## 8    7.695365e-01 0.230463505 zero Group1 178 1077   63 212 0.456410256
## 969  7.691284e-01 0.230871618  one Group1 179 1077   63 211 0.458974359
## 49   7.681728e-01 0.231827199 zero Group1 179 1076   64 211 0.458974359
## 660  7.653085e-01 0.234691501 zero Group1 179 1075   65 211 0.458974359
## 240  7.640787e-01 0.235921264 zero Group1 179 1074   66 211 0.458974359
## 561  7.639520e-01 0.236048043  one Group1 180 1074   66 210 0.461538462
## 970  7.633979e-01 0.236602128  one Group1 181 1074   66 209 0.464102564
## 1111 7.629077e-01 0.237092316 zero Group1 181 1073   67 209 0.464102564
## 1087 7.627473e-01 0.237252712  one Group1 182 1073   67 208 0.466666667
## 1005 7.626660e-01 0.237334013  one Group1 183 1073   67 207 0.469230769
## 690  7.585098e-01 0.241490245  one Group1 184 1073   67 206 0.471794872
## 1481 7.577810e-01 0.242219031 zero Group1 184 1072   68 206 0.471794872
## 1352 7.562247e-01 0.243775308 zero Group1 184 1071   69 206 0.471794872
## 933  7.556432e-01 0.244356751  one Group1 185 1071   69 205 0.474358974
## 524  7.524278e-01 0.247572243 zero Group1 185 1070   70 205 0.474358974
## 1004 7.493916e-01 0.250608385  one Group1 186 1070   70 204 0.476923077
## 101  7.493598e-01 0.250640213 zero Group1 186 1069   71 204 0.476923077
## 32   7.451516e-01 0.254848421  one Group1 187 1069   71 203 0.479487179
## 1215 7.436400e-01 0.256359994  one Group1 188 1069   71 202 0.482051282
## 1214 7.421981e-01 0.257801950  one Group1 189 1069   71 201 0.484615385
## 170  7.419704e-01 0.258029640 zero Group1 189 1068   72 201 0.484615385
## 939  7.416703e-01 0.258329690 zero Group1 189 1067   73 201 0.484615385
## 548  7.395822e-01 0.260417759 zero Group1 189 1066   74 201 0.484615385
## 894  7.392738e-01 0.260726213 zero Group1 189 1065   75 201 0.484615385
## 1095 7.367529e-01 0.263247132  one Group1 190 1065   75 200 0.487179487
## 163  7.357673e-01 0.264232695  one Group1 191 1065   75 199 0.489743590
## 226  7.356021e-01 0.264397860 zero Group1 191 1064   76 199 0.489743590
## 517  7.314947e-01 0.268505335 zero Group1 191 1063   77 199 0.489743590
## 337  7.309062e-01 0.269093812 zero Group1 191 1062   78 199 0.489743590
## 993  7.298542e-01 0.270145774 zero Group1 191 1061   79 199 0.489743590
## 280  7.290584e-01 0.270941615 zero Group1 191 1060   80 199 0.489743590
## 294  7.283972e-01 0.271602809  one Group1 192 1060   80 198 0.492307692
## 689  7.258484e-01 0.274151564  one Group1 193 1060   80 197 0.494871795
## 145  7.254466e-01 0.274553418 zero Group1 193 1059   81 197 0.494871795
## 100  7.248818e-01 0.275118232 zero Group1 193 1058   82 197 0.494871795
## 1187 7.219920e-01 0.278008044 zero Group1 193 1057   83 197 0.494871795
## 1389 7.165043e-01 0.283495724 zero Group1 193 1056   84 197 0.494871795
## 758  7.161019e-01 0.283898115 zero Group1 193 1055   85 197 0.494871795
## 129  7.153900e-01 0.284610033 zero Group1 193 1054   86 197 0.494871795
## 687  7.149875e-01 0.285012484  one Group1 194 1054   86 196 0.497435897
## 847  7.119750e-01 0.288024962  one Group1 195 1054   86 195 0.500000000
## 427  7.094333e-01 0.290566742 zero Group1 195 1053   87 195 0.500000000
## 287  7.076288e-01 0.292371213  one Group1 196 1053   87 194 0.502564103
## 242  7.065177e-01 0.293482304 zero Group1 196 1052   88 194 0.502564103
## 929  7.050949e-01 0.294905066  one Group1 197 1052   88 193 0.505128205
## 151  7.030466e-01 0.296953440  one Group1 198 1052   88 192 0.507692308
## 623  6.962779e-01 0.303722143 zero Group1 198 1051   89 192 0.507692308
## 665  6.938635e-01 0.306136549 zero Group1 198 1050   90 192 0.507692308
## 984  6.938219e-01 0.306178093 zero Group1 198 1049   91 192 0.507692308
## 997  6.836695e-01 0.316330492 zero Group1 198 1048   92 192 0.507692308
## 764  6.819939e-01 0.318006098 zero Group1 198 1047   93 192 0.507692308
## 641  6.796703e-01 0.320329726  one Group1 199 1047   93 191 0.510256410
## 1073 6.790320e-01 0.320968032 zero Group1 199 1046   94 191 0.510256410
## 273  6.771791e-01 0.322820902 zero Group1 199 1045   95 191 0.510256410
## 182  6.751242e-01 0.324875772  one Group1 200 1045   95 190 0.512820513
## 469  6.750405e-01 0.324959517 zero Group1 200 1044   96 190 0.512820513
## 119  6.747778e-01 0.325222194  one Group1 201 1044   96 189 0.515384615
## 415  6.731895e-01 0.326810539 zero Group1 201 1043   97 189 0.515384615
## 3    6.727783e-01 0.327221692 zero Group1 201 1042   98 189 0.515384615
## 819  6.725543e-01 0.327445745 zero Group1 201 1041   99 189 0.515384615
## 423  6.700730e-01 0.329926968 zero Group1 201 1040  100 189 0.515384615
## 1105 6.700675e-01 0.329932451 zero Group1 201 1039  101 189 0.515384615
## 150  6.691628e-01 0.330837250 zero Group1 201 1038  102 189 0.515384615
## 401  6.687961e-01 0.331203938 zero Group1 201 1037  103 189 0.515384615
## 693  6.652957e-01 0.334704280 zero Group1 201 1036  104 189 0.515384615
## 895  6.604867e-01 0.339513302 zero Group1 201 1035  105 189 0.515384615
## 608  6.602120e-01 0.339788020  one Group1 202 1035  105 188 0.517948718
## 113  6.569610e-01 0.343039036  one Group1 203 1035  105 187 0.520512821
## 355  6.559882e-01 0.344011784  one Group1 204 1035  105 186 0.523076923
## 975  6.557592e-01 0.344240785  one Group1 205 1035  105 185 0.525641026
## 298  6.544613e-01 0.345538735  one Group1 206 1035  105 184 0.528205128
## 543  6.543264e-01 0.345673621 zero Group1 206 1034  106 184 0.528205128
## 367  6.528789e-01 0.347121119 zero Group1 206 1033  107 184 0.528205128
## 219  6.527398e-01 0.347260237  one Group1 207 1033  107 183 0.530769231
## 1423 6.522567e-01 0.347743332  one Group1 208 1033  107 182 0.533333333
## 1141 6.467606e-01 0.353239417 zero Group1 208 1032  108 182 0.533333333
## 692  6.431745e-01 0.356825471  one Group1 209 1032  108 181 0.535897436
## 380  6.428336e-01 0.357166409 zero Group1 209 1031  109 181 0.535897436
## 1278 6.417331e-01 0.358266890 zero Group1 209 1030  110 181 0.535897436
## 1367 6.404756e-01 0.359524429 zero Group1 209 1029  111 181 0.535897436
## 1296 6.401574e-01 0.359842598  one Group1 210 1029  111 180 0.538461538
## 28   6.395663e-01 0.360433698 zero Group1 210 1028  112 180 0.538461538
## 1462 6.374900e-01 0.362510026  one Group1 211 1028  112 179 0.541025641
## 303  6.370276e-01 0.362972438  one Group1 212 1028  112 178 0.543589744
## 805  6.360667e-01 0.363933265  one Group1 213 1028  112 177 0.546153846
## 1396 6.358131e-01 0.364186883 zero Group1 213 1027  113 177 0.546153846
## 905  6.344282e-01 0.365571797 zero Group1 213 1026  114 177 0.546153846
## 1117 6.336589e-01 0.366341054 zero Group1 213 1025  115 177 0.546153846
## 1014 6.330078e-01 0.366992176 zero Group1 213 1024  116 177 0.546153846
## 1053 6.318542e-01 0.368145764  one Group1 214 1024  116 176 0.548717949
## 38   6.314842e-01 0.368515790 zero Group1 214 1023  117 176 0.548717949
## 172  6.302717e-01 0.369728267 zero Group1 214 1022  118 176 0.548717949
## 596  6.290954e-01 0.370904565 zero Group1 214 1021  119 176 0.548717949
## 935  6.243862e-01 0.375613809  one Group1 215 1021  119 175 0.551282051
## 117  6.239554e-01 0.376044571  one Group1 216 1021  119 174 0.553846154
## 827  6.234879e-01 0.376512110 zero Group1 216 1020  120 174 0.553846154
## 749  6.221505e-01 0.377849460 zero Group1 216 1019  121 174 0.553846154
## 1480 6.210977e-01 0.378902256 zero Group1 216 1018  122 174 0.553846154
## 153  6.202933e-01 0.379706740  one Group1 217 1018  122 173 0.556410256
## 274  6.201386e-01 0.379861355 zero Group1 217 1017  123 173 0.556410256
## 1331 6.184095e-01 0.381590545  one Group1 218 1017  123 172 0.558974359
## 1079 6.171912e-01 0.382808805 zero Group1 218 1016  124 172 0.558974359
## 137  6.163158e-01 0.383684158 zero Group1 218 1015  125 172 0.558974359
## 1218 6.158768e-01 0.384123206  one Group1 219 1015  125 171 0.561538462
## 837  6.157953e-01 0.384204745 zero Group1 219 1014  126 171 0.561538462
## 1054 6.150448e-01 0.384955227  one Group1 220 1014  126 170 0.564102564
## 675  6.145451e-01 0.385454893 zero Group1 220 1013  127 170 0.564102564
## 568  6.141226e-01 0.385877371  one Group1 221 1013  127 169 0.566666667
## 126  6.140336e-01 0.385966361 zero Group1 221 1012  128 169 0.566666667
## 470  6.137161e-01 0.386283875 zero Group1 221 1011  129 169 0.566666667
## 422  6.114355e-01 0.388564527 zero Group1 221 1010  130 169 0.566666667
## 1032 6.095595e-01 0.390440464 zero Group1 221 1009  131 169 0.566666667
## 1300 6.095126e-01 0.390487432  one Group1 222 1009  131 168 0.569230769
## 17   6.068956e-01 0.393104434  one Group1 223 1009  131 167 0.571794872
## 257  6.065373e-01 0.393462718  one Group1 224 1009  131 166 0.574358974
## 657  6.050987e-01 0.394901276 zero Group1 224 1008  132 166 0.574358974
## 187  6.036831e-01 0.396316946 zero Group1 224 1007  133 166 0.574358974
## 1069 6.032408e-01 0.396759152 zero Group1 224 1006  134 166 0.574358974
## 185  5.926430e-01 0.407357037 zero Group1 224 1005  135 166 0.574358974
## 464  5.908660e-01 0.409133971 zero Group1 224 1004  136 166 0.574358974
## 775  5.899030e-01 0.410097003 zero Group1 224 1003  137 166 0.574358974
## 1027 5.825474e-01 0.417452574 zero Group1 224 1002  138 166 0.574358974
## 924  5.814290e-01 0.418570995  one Group1 225 1002  138 165 0.576923077
## 483  5.809813e-01 0.419018745  one Group1 226 1002  138 164 0.579487179
## 1110 5.807669e-01 0.419233143 zero Group1 226 1001  139 164 0.579487179
## 118  5.802612e-01 0.419738829 zero Group1 226 1000  140 164 0.579487179
## 798  5.781629e-01 0.421837091 zero Group1 226  999  141 164 0.579487179
## 581  5.763461e-01 0.423653901 zero Group1 226  998  142 164 0.579487179
## 1226 5.745212e-01 0.425478756 zero Group1 226  997  143 164 0.579487179
## 1437 5.730210e-01 0.426979005 zero Group1 226  996  144 164 0.579487179
## 579  5.714159e-01 0.428584099 zero Group1 226  995  145 164 0.579487179
## 816  5.697061e-01 0.430293918 zero Group1 226  994  146 164 0.579487179
## 541  5.681097e-01 0.431890309 zero Group1 226  993  147 164 0.579487179
## 390  5.674059e-01 0.432594061 zero Group1 226  992  148 164 0.579487179
## 181  5.659993e-01 0.434000671  one Group1 227  992  148 163 0.582051282
## 810  5.650301e-01 0.434969902  one Group1 228  992  148 162 0.584615385
## 202  5.640989e-01 0.435901105 zero Group1 228  991  149 162 0.584615385
## 1078 5.636520e-01 0.436347961 zero Group1 228  990  150 162 0.584615385
## 976  5.628784e-01 0.437121570  one Group1 229  990  150 161 0.587179487
## 1142 5.628321e-01 0.437167943 zero Group1 229  989  151 161 0.587179487
## 323  5.627766e-01 0.437223375 zero Group1 229  988  152 161 0.587179487
## 886  5.599185e-01 0.440081537 zero Group1 229  987  153 161 0.587179487
## 1207 5.582175e-01 0.441782475  one Group1 230  987  153 160 0.589743590
## 418  5.570148e-01 0.442985177 zero Group1 230  986  154 160 0.589743590
## 512  5.569382e-01 0.443061769 zero Group1 230  985  155 160 0.589743590
## 789  5.546997e-01 0.445300341 zero Group1 230  984  156 160 0.589743590
## 308  5.546099e-01 0.445390105 zero Group1 230  983  157 160 0.589743590
## 1473 5.520070e-01 0.447993040 zero Group1 230  982  158 160 0.589743590
## 792  5.511487e-01 0.448851347 zero Group1 230  981  159 160 0.589743590
## 891  5.483979e-01 0.451602101 zero Group1 230  980  160 160 0.589743590
## 564  5.471039e-01 0.452896059  one Group1 231  980  160 159 0.592307692
## 338  5.464231e-01 0.453576863 zero Group1 231  979  161 159 0.592307692
## 468  5.437811e-01 0.456218898 zero Group1 231  978  162 159 0.592307692
## 851  5.404817e-01 0.459518254  one Group1 232  978  162 158 0.594871795
## 967  5.400127e-01 0.459987283  one Group1 233  978  162 157 0.597435897
## 293  5.385566e-01 0.461443365 zero Group1 233  977  163 157 0.597435897
## 990  5.385358e-01 0.461464226 zero Group1 233  976  164 157 0.597435897
## 364  5.361170e-01 0.463882983 zero Group1 233  975  165 157 0.597435897
## 945  5.352109e-01 0.464789093 zero Group1 233  974  166 157 0.597435897
## 1042 5.322171e-01 0.467782855 zero Group1 233  973  167 157 0.597435897
## 307  5.263343e-01 0.473665655  one Group1 234  973  167 156 0.600000000
## 1491 5.259435e-01 0.474056542 zero Group1 234  972  168 156 0.600000000
## 526  5.179081e-01 0.482091904 zero Group1 234  971  169 156 0.600000000
## 131  5.168152e-01 0.483184755 zero Group1 234  970  170 156 0.600000000
## 946  5.165495e-01 0.483450472 zero Group1 234  969  171 156 0.600000000
## 322  5.165312e-01 0.483468771 zero Group1 234  968  172 156 0.600000000
## 1169 5.147117e-01 0.485288262  one Group1 235  968  172 155 0.602564103
## 628  5.131146e-01 0.486885428 zero Group1 235  967  173 155 0.602564103
## 22   5.106867e-01 0.489313304  one Group1 236  967  173 154 0.605128205
## 988  5.085215e-01 0.491478503 zero Group1 236  966  174 154 0.605128205
## 1104 5.061088e-01 0.493891239 zero Group1 236  965  175 154 0.605128205
## 520  5.045457e-01 0.495454252 zero Group1 236  964  176 154 0.605128205
## 603  5.030648e-01 0.496935189  one Group1 237  964  176 153 0.607692308
## 122  5.025405e-01 0.497459471 zero Group1 237  963  177 153 0.607692308
## 973  5.016917e-01 0.498308301  one Group1 238  963  177 152 0.610256410
## 559  5.016213e-01 0.498378694  one Group1 239  963  177 151 0.612820513
## 263  4.983273e-01 0.501672745 zero Group1 239  962  178 151 0.612820513
## 718  4.981740e-01 0.501826018 zero Group1 239  961  179 151 0.612820513
## 41   4.981428e-01 0.501857162 zero Group1 239  960  180 151 0.612820513
## 1453 4.975152e-01 0.502484798  one Group1 240  960  180 150 0.615384615
## 808  4.970887e-01 0.502911270  one Group1 241  960  180 149 0.617948718
## 344  4.969966e-01 0.503003389 zero Group1 241  959  181 149 0.617948718
## 1171 4.965422e-01 0.503457785  one Group1 242  959  181 148 0.620512821
## 218  4.931230e-01 0.506877005  one Group1 243  959  181 147 0.623076923
## 1417 4.922891e-01 0.507710904  one Group1 244  959  181 146 0.625641026
## 227  4.894119e-01 0.510588109 zero Group1 244  958  182 146 0.625641026
## 1410 4.893297e-01 0.510670334 zero Group1 244  957  183 146 0.625641026
## 237  4.882510e-01 0.511748970 zero Group1 244  956  184 146 0.625641026
## 750  4.871862e-01 0.512813777 zero Group1 244  955  185 146 0.625641026
## 1424 4.869233e-01 0.513076723 zero Group1 244  954  186 146 0.625641026
## 184  4.856359e-01 0.514364123 zero Group1 244  953  187 146 0.625641026
## 264  4.850694e-01 0.514930636  one Group1 245  953  187 145 0.628205128
## 1114 4.837683e-01 0.516231716 zero Group1 245  952  188 145 0.628205128
## 1008 4.809858e-01 0.519014239 zero Group1 245  951  189 145 0.628205128
## 335  4.807357e-01 0.519264251 zero Group1 245  950  190 145 0.628205128
## 498  4.745013e-01 0.525498688 zero Group1 245  949  191 145 0.628205128
## 1497 4.742667e-01 0.525733262 zero Group1 245  948  192 145 0.628205128
## 42   4.739720e-01 0.526028037  one Group1 246  948  192 144 0.630769231
## 1012 4.729879e-01 0.527012080 zero Group1 246  947  193 144 0.630769231
## 685  4.724941e-01 0.527505875  one Group1 247  947  193 143 0.633333333
## 634  4.724862e-01 0.527513832 zero Group1 247  946  194 143 0.633333333
## 125  4.690157e-01 0.530984312 zero Group1 247  945  195 143 0.633333333
## 1155 4.671704e-01 0.532829553 zero Group1 247  944  196 143 0.633333333
## 86   4.669710e-01 0.533028960 zero Group1 247  943  197 143 0.633333333
## 288  4.654639e-01 0.534536093  one Group1 248  943  197 142 0.635897436
## 1068 4.654427e-01 0.534557343 zero Group1 248  942  198 142 0.635897436
## 1454 4.651560e-01 0.534844011  one Group1 249  942  198 141 0.638461538
## 203  4.651141e-01 0.534885913 zero Group1 249  941  199 141 0.638461538
## 200  4.644337e-01 0.535566300  one Group1 250  941  199 140 0.641025641
## 61   4.634518e-01 0.536548167 zero Group1 250  940  200 140 0.641025641
## 286  4.619330e-01 0.538067043  one Group1 251  940  200 139 0.643589744
## 402  4.618280e-01 0.538172036 zero Group1 251  939  201 139 0.643589744
## 1526 4.611462e-01 0.538853765 zero Group1 251  938  202 139 0.643589744
## 1033 4.608476e-01 0.539152384 zero Group1 251  937  203 139 0.643589744
## 56   4.606588e-01 0.539341182  one Group1 252  937  203 138 0.646153846
## 783  4.602653e-01 0.539734662 zero Group1 252  936  204 138 0.646153846
## 655  4.596628e-01 0.540337205 zero Group1 252  935  205 138 0.646153846
## 773  4.593233e-01 0.540676743 zero Group1 252  934  206 138 0.646153846
## 1285 4.585164e-01 0.541483641 zero Group1 252  933  207 138 0.646153846
## 1128 4.580622e-01 0.541937768  one Group1 253  933  207 137 0.648717949
## 331  4.570320e-01 0.542968035 zero Group1 253  932  208 137 0.648717949
## 938  4.564441e-01 0.543555856 zero Group1 253  931  209 137 0.648717949
## 1088 4.561486e-01 0.543851376  one Group1 254  931  209 136 0.651282051
## 1225 4.554848e-01 0.544515163 zero Group1 254  930  210 136 0.651282051
## 1486 4.551367e-01 0.544863343 zero Group1 254  929  211 136 0.651282051
## 1150 4.545649e-01 0.545435101 zero Group1 254  928  212 136 0.651282051
## 183  4.532687e-01 0.546731263 zero Group1 254  927  213 136 0.651282051
## 437  4.525763e-01 0.547423720  one Group1 255  927  213 135 0.653846154
## 731  4.524118e-01 0.547588229  one Group1 256  927  213 134 0.656410256
## 1075 4.523610e-01 0.547638983 zero Group1 256  926  214 134 0.656410256
## 10   4.513783e-01 0.548621684 zero Group1 256  925  215 134 0.656410256
## 1264 4.508656e-01 0.549134403 zero Group1 256  924  216 134 0.656410256
## 12   4.497919e-01 0.550208122 zero Group1 256  923  217 134 0.656410256
## 1318 4.497207e-01 0.550279289 zero Group1 256  922  218 134 0.656410256
## 1457 4.495417e-01 0.550458312  one Group1 257  922  218 133 0.658974359
## 70   4.491531e-01 0.550846905  one Group1 258  922  218 132 0.661538462
## 873  4.484645e-01 0.551535457 zero Group1 258  921  219 132 0.661538462
## 1164 4.467099e-01 0.553290099 zero Group1 258  920  220 132 0.661538462
## 1056 4.445582e-01 0.555441827  one Group1 259  920  220 131 0.664102564
## 239  4.442432e-01 0.555756837  one Group1 260  920  220 130 0.666666667
## 270  4.439518e-01 0.556048185 zero Group1 260  919  221 130 0.666666667
## 81   4.426512e-01 0.557348818 zero Group1 260  918  222 130 0.666666667
## 632  4.352951e-01 0.564704925 zero Group1 260  917  223 130 0.666666667
## 1122 4.350092e-01 0.564990789 zero Group1 260  916  224 130 0.666666667
## 231  4.343615e-01 0.565638512 zero Group1 260  915  225 130 0.666666667
## 652  4.332121e-01 0.566787899 zero Group1 260  914  226 130 0.666666667
## 653  4.322483e-01 0.567751676 zero Group1 260  913  227 130 0.666666667
## 1045 4.309284e-01 0.569071561  one Group1 261  913  227 129 0.669230769
## 723  4.307387e-01 0.569261342  one Group1 262  913  227 128 0.671794872
## 1295 4.307248e-01 0.569275230  one Group1 263  913  227 127 0.674358974
## 1244 4.300221e-01 0.569977909 zero Group1 263  912  228 127 0.674358974
## 326  4.298140e-01 0.570185989 zero Group1 263  911  229 127 0.674358974
## 861  4.288540e-01 0.571145952 zero Group1 263  910  230 127 0.674358974
## 1228 4.286402e-01 0.571359754 zero Group1 263  909  231 127 0.674358974
## 913  4.278084e-01 0.572191566 zero Group1 263  908  232 127 0.674358974
## 214  4.269190e-01 0.573081017 zero Group1 263  907  233 127 0.674358974
## 1317 4.268177e-01 0.573182285 zero Group1 263  906  234 127 0.674358974
## 728  4.260163e-01 0.573983699  one Group1 264  906  234 126 0.676923077
## 222  4.232782e-01 0.576721758 zero Group1 264  905  235 126 0.676923077
## 522  4.227507e-01 0.577249318 zero Group1 264  904  236 126 0.676923077
## 451  4.158650e-01 0.584134966 zero Group1 264  903  237 126 0.676923077
## 765  4.148310e-01 0.585169047 zero Group1 264  902  238 126 0.676923077
## 1504 4.130307e-01 0.586969316 zero Group1 264  901  239 126 0.676923077
## 65   4.069797e-01 0.593020260 zero Group1 264  900  240 126 0.676923077
## 1381 4.038088e-01 0.596191227 zero Group1 264  899  241 126 0.676923077
## 1397 4.036248e-01 0.596375227 zero Group1 264  898  242 126 0.676923077
## 736  4.029678e-01 0.597032219 zero Group1 264  897  243 126 0.676923077
## 1161 3.985204e-01 0.601479650 zero Group1 264  896  244 126 0.676923077
## 1520 3.958028e-01 0.604197204 zero Group1 264  895  245 126 0.676923077
## 558  3.935725e-01 0.606427461  one Group1 265  895  245 125 0.679487179
## 1419 3.928691e-01 0.607130855  one Group1 266  895  245 124 0.682051282
## 610  3.897381e-01 0.610261917  one Group1 267  895  245 123 0.684615385
## 405  3.896405e-01 0.610359550 zero Group1 267  894  246 123 0.684615385
## 954  3.884078e-01 0.611592203 zero Group1 267  893  247 123 0.684615385
## 155  3.871692e-01 0.612830848 zero Group1 267  892  248 123 0.684615385
## 411  3.849716e-01 0.615028381 zero Group1 267  891  249 123 0.684615385
## 1499 3.845102e-01 0.615489781 zero Group1 267  890  250 123 0.684615385
## 349  3.843144e-01 0.615685642 zero Group1 267  889  251 123 0.684615385
## 35   3.810191e-01 0.618980885  one Group1 268  889  251 122 0.687179487
## 98   3.800784e-01 0.619921595 zero Group1 268  888  252 122 0.687179487
## 1201 3.785807e-01 0.621419281 zero Group1 268  887  253 122 0.687179487
## 1439 3.783849e-01 0.621615052 zero Group1 268  886  254 122 0.687179487
## 859  3.774667e-01 0.622533262 zero Group1 268  885  255 122 0.687179487
## 1290 3.757168e-01 0.624283195  one Group1 269  885  255 121 0.689743590
## 490  3.747491e-01 0.625250876  one Group1 270  885  255 120 0.692307692
## 732  3.741149e-01 0.625885069  one Group1 271  885  255 119 0.694871795
## 1452 3.736865e-01 0.626313478  one Group1 272  885  255 118 0.697435897
## 835  3.727961e-01 0.627203941 zero Group1 272  884  256 118 0.697435897
## 1294 3.710549e-01 0.628945142  one Group1 273  884  256 117 0.700000000
## 45   3.704324e-01 0.629567564  one Group1 274  884  256 116 0.702564103
## 672  3.685001e-01 0.631499916 zero Group1 274  883  257 116 0.702564103
## 1084 3.681626e-01 0.631837428 zero Group1 274  882  258 116 0.702564103
## 171  3.672206e-01 0.632779449  one Group1 275  882  258 115 0.705128205
## 576  3.595269e-01 0.640473068 zero Group1 275  881  259 115 0.705128205
## 13   3.592909e-01 0.640709072 zero Group1 275  880  260 115 0.705128205
## 659  3.582952e-01 0.641704798 zero Group1 275  879  261 115 0.705128205
## 9    3.574310e-01 0.642568976 zero Group1 275  878  262 115 0.705128205
## 956  3.570918e-01 0.642908186 zero Group1 275  877  263 115 0.705128205
## 76   3.570122e-01 0.642987788 zero Group1 275  876  264 115 0.705128205
## 597  3.566691e-01 0.643330932 zero Group1 275  875  265 115 0.705128205
## 1479 3.564821e-01 0.643517852 zero Group1 275  874  266 115 0.705128205
## 519  3.564572e-01 0.643542826 zero Group1 275  873  267 115 0.705128205
## 1380 3.551613e-01 0.644838661 zero Group1 275  872  268 115 0.705128205
## 371  3.538712e-01 0.646128833 zero Group1 275  871  269 115 0.705128205
## 463  3.509299e-01 0.649070084 zero Group1 275  870  270 115 0.705128205
## 496  3.483065e-01 0.651693493 zero Group1 275  869  271 115 0.705128205
## 95   3.476896e-01 0.652310431 zero Group1 275  868  272 115 0.705128205
## 506  3.467107e-01 0.653289318 zero Group1 275  867  273 115 0.705128205
## 742  3.463496e-01 0.653650403 zero Group1 275  866  274 115 0.705128205
## 1483 3.462532e-01 0.653746814 zero Group1 275  865  275 115 0.705128205
## 85   3.459316e-01 0.654068440 zero Group1 275  864  276 115 0.705128205
## 1274 3.453792e-01 0.654620767 zero Group1 275  863  277 115 0.705128205
## 1162 3.430038e-01 0.656996191 zero Group1 275  862  278 115 0.705128205
## 930  3.400948e-01 0.659905225  one Group1 276  862  278 114 0.707692308
## 504  3.400770e-01 0.659923017 zero Group1 276  861  279 114 0.707692308
## 1372 3.377807e-01 0.662219256  one Group1 277  861  279 113 0.710256410
## 836  3.373404e-01 0.662659585 zero Group1 277  860  280 113 0.710256410
## 1261 3.371800e-01 0.662819952 zero Group1 277  859  281 113 0.710256410
## 209  3.362974e-01 0.663702577 zero Group1 277  858  282 113 0.710256410
## 1011 3.320550e-01 0.667944968 zero Group1 277  857  283 113 0.710256410
## 103  3.317492e-01 0.668250799  one Group1 278  857  283 112 0.712820513
## 168  3.314418e-01 0.668558210 zero Group1 278  856  284 112 0.712820513
## 180  3.283393e-01 0.671660691 zero Group1 278  855  285 112 0.712820513
## 190  3.276957e-01 0.672304302 zero Group1 278  854  286 112 0.712820513
## 165  3.265102e-01 0.673489839 zero Group1 278  853  287 112 0.712820513
## 277  3.247240e-01 0.675275981 zero Group1 278  852  288 112 0.712820513
## 844  3.230298e-01 0.676970214  one Group1 279  852  288 111 0.715384615
## 1510 3.229565e-01 0.677043527 zero Group1 279  851  289 111 0.715384615
## 510  3.179634e-01 0.682036608 zero Group1 279  850  290 111 0.715384615
## 920  3.168325e-01 0.683167458 zero Group1 279  849  291 111 0.715384615
## 356  3.163040e-01 0.683696032 zero Group1 279  848  292 111 0.715384615
## 48   3.162475e-01 0.683752477 zero Group1 279  847  293 111 0.715384615
## 489  3.151740e-01 0.684826046  one Group1 280  847  293 110 0.717948718
## 186  3.142707e-01 0.685729295 zero Group1 280  846  294 110 0.717948718
## 79   3.137437e-01 0.686256349 zero Group1 280  845  295 110 0.717948718
## 173  3.128064e-01 0.687193632 zero Group1 280  844  296 110 0.717948718
## 802  3.126593e-01 0.687340677  one Group1 281  844  296 109 0.720512821
## 505  3.117487e-01 0.688251346 zero Group1 281  843  297 109 0.720512821
## 1167 3.116062e-01 0.688393831  one Group1 282  843  297 108 0.723076923
## 1205 3.109674e-01 0.689032584 zero Group1 282  842  298 108 0.723076923
## 1309 3.101656e-01 0.689834416 zero Group1 282  841  299 108 0.723076923
## 397  3.094047e-01 0.690595269  one Group1 283  841  299 107 0.725641026
## 794  3.067445e-01 0.693255544 zero Group1 283  840  300 107 0.725641026
## 1356 3.063510e-01 0.693648994 zero Group1 283  839  301 107 0.725641026
## 1506 3.055915e-01 0.694408476 zero Group1 283  838  302 107 0.725641026
## 146  3.029613e-01 0.697038710  one Group1 284  838  302 106 0.728205128
## 1395 3.029189e-01 0.697081119 zero Group1 284  837  303 106 0.728205128
## 1193 3.003255e-01 0.699674457 zero Group1 284  836  304 106 0.728205128
## 831  2.995723e-01 0.700427651 zero Group1 284  835  305 106 0.728205128
## 985  2.985741e-01 0.701425880 zero Group1 284  834  306 106 0.728205128
## 260  2.984495e-01 0.701550543 zero Group1 284  833  307 106 0.728205128
## 93   2.981697e-01 0.701830268 zero Group1 284  832  308 106 0.728205128
## 1342 2.964298e-01 0.703570217 zero Group1 284  831  309 106 0.728205128
## 156  2.958548e-01 0.704145193 zero Group1 284  830  310 106 0.728205128
## 1140 2.953805e-01 0.704619467 zero Group1 284  829  311 106 0.728205128
## 630  2.948575e-01 0.705142498 zero Group1 284  828  312 106 0.728205128
## 381  2.943086e-01 0.705691427 zero Group1 284  827  313 106 0.728205128
## 63   2.940141e-01 0.705985934 zero Group1 284  826  314 106 0.728205128
## 921  2.935862e-01 0.706413835 zero Group1 284  825  315 106 0.728205128
## 768  2.924695e-01 0.707530528 zero Group1 284  824  316 106 0.728205128
## 108  2.883069e-01 0.711693138  one Group1 285  824  316 105 0.730769231
## 178  2.879794e-01 0.712020606 zero Group1 285  823  317 105 0.730769231
## 828  2.850814e-01 0.714918643 zero Group1 285  822  318 105 0.730769231
## 787  2.820881e-01 0.717911929 zero Group1 285  821  319 105 0.730769231
## 1518 2.817129e-01 0.718287051 zero Group1 285  820  320 105 0.730769231
## 583  2.801570e-01 0.719843030 zero Group1 285  819  321 105 0.730769231
## 575  2.796887e-01 0.720311314 zero Group1 285  818  322 105 0.730769231
## 1345 2.777729e-01 0.722227097 zero Group1 285  817  323 105 0.730769231
## 166  2.762447e-01 0.723755270 zero Group1 285  816  324 105 0.730769231
## 751  2.761762e-01 0.723823756 zero Group1 285  815  325 105 0.730769231
## 1130 2.756620e-01 0.724337965 zero Group1 285  814  326 105 0.730769231
## 649  2.751971e-01 0.724802911 zero Group1 285  813  327 105 0.730769231
## 494  2.751092e-01 0.724890828 zero Group1 285  812  328 105 0.730769231
## 908  2.732529e-01 0.726747096 zero Group1 285  811  329 105 0.730769231
## 647  2.732511e-01 0.726748943 zero Group1 285  810  330 105 0.730769231
## 60   2.730898e-01 0.726910174  one Group1 286  810  330 104 0.733333333
## 154  2.724596e-01 0.727540433 zero Group1 286  809  331 104 0.733333333
## 1375 2.718912e-01 0.728108764 zero Group1 286  808  332 104 0.733333333
## 1341 2.699599e-01 0.730040073  one Group1 287  808  332 103 0.735897436
## 318  2.683470e-01 0.731652975 zero Group1 287  807  333 103 0.735897436
## 864  2.661348e-01 0.733865172 zero Group1 287  806  334 103 0.735897436
## 1211 2.655347e-01 0.734465271  one Group1 288  806  334 102 0.738461538
## 977  2.651087e-01 0.734891266 zero Group1 288  805  335 102 0.738461538
## 601  2.644175e-01 0.735582471  one Group1 289  805  335 101 0.741025641
## 1050 2.640576e-01 0.735942423  one Group1 290  805  335 100 0.743589744
## 428  2.624010e-01 0.737598985 zero Group1 290  804  336 100 0.743589744
## 1002 2.620611e-01 0.737938941 zero Group1 290  803  337 100 0.743589744
## 927  2.618228e-01 0.738177150  one Group1 291  803  337  99 0.746153846
## 446  2.612459e-01 0.738754064  one Group1 292  803  337  98 0.748717949
## 1476 2.610760e-01 0.738923967 zero Group1 292  802  338  98 0.748717949
## 434  2.608017e-01 0.739198327 zero Group1 292  801  339  98 0.748717949
## 140  2.598227e-01 0.740177333 zero Group1 292  800  340  98 0.748717949
## 1459 2.580667e-01 0.741933346  one Group1 293  800  340  97 0.751282051
## 207  2.572637e-01 0.742736250 zero Group1 293  799  341  97 0.751282051
## 1333 2.569225e-01 0.743077457  one Group1 294  799  341  96 0.753846154
## 991  2.542907e-01 0.745709300 zero Group1 294  798  342  96 0.753846154
## 502  2.542364e-01 0.745763600 zero Group1 294  797  343  96 0.753846154
## 1229 2.533785e-01 0.746621519 zero Group1 294  796  344  96 0.753846154
## 887  2.531059e-01 0.746894091 zero Group1 294  795  345  96 0.753846154
## 134  2.517012e-01 0.748298794 zero Group1 294  794  346  96 0.753846154
## 234  2.507558e-01 0.749244243 zero Group1 294  793  347  96 0.753846154
## 447  2.505601e-01 0.749439925  one Group1 295  793  347  95 0.756410256
## 853  2.502151e-01 0.749784946  one Group1 296  793  347  94 0.758974359
## 1495 2.482780e-01 0.751722008 zero Group1 296  792  348  94 0.758974359
## 1232 2.467202e-01 0.753279835 zero Group1 296  791  349  94 0.758974359
## 319  2.422216e-01 0.757778361 zero Group1 296  790  350  94 0.758974359
## 529  2.416541e-01 0.758345857 zero Group1 296  789  351  94 0.758974359
## 1522 2.413231e-01 0.758676872 zero Group1 296  788  352  94 0.758974359
## 577  2.398606e-01 0.760139406 zero Group1 296  787  353  94 0.758974359
## 906  2.392179e-01 0.760782108 zero Group1 296  786  354  94 0.758974359
## 1277 2.386129e-01 0.761387110 zero Group1 296  785  355  94 0.758974359
## 403  2.380248e-01 0.761975229 zero Group1 296  784  356  94 0.758974359
## 473  2.376655e-01 0.762334526 zero Group1 296  783  357  94 0.758974359
## 1474 2.363671e-01 0.763632894 zero Group1 296  782  358  94 0.758974359
## 1160 2.358706e-01 0.764129445 zero Group1 296  781  359  94 0.758974359
## 229  2.348666e-01 0.765133426 zero Group1 296  780  360  94 0.758974359
## 493  2.347735e-01 0.765226543 zero Group1 296  779  361  94 0.758974359
## 1463 2.335660e-01 0.766433969 zero Group1 296  778  362  94 0.758974359
## 865  2.331999e-01 0.766800076 zero Group1 296  777  363  94 0.758974359
## 144  2.330811e-01 0.766918942 zero Group1 296  776  364  94 0.758974359
## 1362 2.329971e-01 0.767002895 zero Group1 296  775  365  94 0.758974359
## 142  2.326073e-01 0.767392680  one Group1 297  775  365  93 0.761538462
## 1191 2.306235e-01 0.769376546 zero Group1 297  774  366  93 0.761538462
## 696  2.301261e-01 0.769873902 zero Group1 297  773  367  93 0.761538462
## 989  2.299435e-01 0.770056531 zero Group1 297  772  368  93 0.761538462
## 587  2.287917e-01 0.771208331 zero Group1 297  771  369  93 0.761538462
## 1378 2.275535e-01 0.772446468 zero Group1 297  770  370  93 0.761538462
## 238  2.270845e-01 0.772915468 zero Group1 297  768  372  93 0.761538462
## 1182 2.270845e-01 0.772915468 zero Group1 297  768  372  93 0.761538462
## 1154 2.260189e-01 0.773981139 zero Group1 297  767  373  93 0.761538462
## 1060 2.232458e-01 0.776754186 zero Group1 297  766  374  93 0.761538462
## 246  2.231204e-01 0.776879609 zero Group1 297  765  375  93 0.761538462
## 343  2.226883e-01 0.777311698 zero Group1 297  764  376  93 0.761538462
## 974  2.221183e-01 0.777881667  one Group1 298  764  376  92 0.764102564
## 268  2.205718e-01 0.779428169 zero Group1 298  763  377  92 0.764102564
## 368  2.203098e-01 0.779690191 zero Group1 298  761  379  92 0.764102564
## 1465 2.203098e-01 0.779690191 zero Group1 298  761  379  92 0.764102564
## 1019 2.171941e-01 0.782805890 zero Group1 298  760  380  92 0.764102564
## 1137 2.167854e-01 0.783214554 zero Group1 298  759  381  92 0.764102564
## 739  2.162749e-01 0.783725068 zero Group1 298  758  382  92 0.764102564
## 1502 2.159291e-01 0.784070894 zero Group1 298  757  383  92 0.764102564
## 1496 2.158182e-01 0.784181759 zero Group1 298  756  384  92 0.764102564
## 1327 2.154915e-01 0.784508511 zero Group1 298  755  385  92 0.764102564
## 1448 2.154159e-01 0.784584150 zero Group1 298  754  386  92 0.764102564
## 1230 2.139186e-01 0.786081359 zero Group1 298  753  387  92 0.764102564
## 1298 2.131349e-01 0.786865115  one Group1 299  753  387  91 0.766666667
## 671  2.122348e-01 0.787765190 zero Group1 299  752  388  91 0.766666667
## 1257 2.106092e-01 0.789390847 zero Group1 299  751  389  91 0.766666667
## 291  2.104725e-01 0.789527461 zero Group1 299  750  390  91 0.766666667
## 1250 2.089876e-01 0.791012377 zero Group1 299  749  391  91 0.766666667
## 1065 2.079658e-01 0.792034164 zero Group1 299  748  392  91 0.766666667
## 58   2.076364e-01 0.792363599 zero Group1 299  747  393  91 0.766666667
## 745  2.067656e-01 0.793234393 zero Group1 299  746  394  91 0.766666667
## 901  2.064994e-01 0.793500558 zero Group1 299  745  395  91 0.766666667
## 1500 2.030881e-01 0.796911925 zero Group1 299  744  396  91 0.766666667
## 763  2.022754e-01 0.797724590 zero Group1 299  743  397  91 0.766666667
## 21   2.022138e-01 0.797786206 zero Group1 299  742  398  91 0.766666667
## 441  2.015900e-01 0.798409998  one Group1 300  742  398  90 0.769230769
## 833  2.007479e-01 0.799252123 zero Group1 300  741  399  90 0.769230769
## 1096 1.996871e-01 0.800312907  one Group1 301  741  399  89 0.771794872
## 791  1.994669e-01 0.800533146 zero Group1 301  740  400  89 0.771794872
## 549  1.990255e-01 0.800974503 zero Group1 301  739  401  89 0.771794872
## 1371 1.978370e-01 0.802162975  one Group1 302  739  401  88 0.774358974
## 1494 1.977169e-01 0.802283108 zero Group1 302  738  402  88 0.774358974
## 448  1.950952e-01 0.804904774  one Group1 303  738  402  87 0.776923077
## 382  1.950663e-01 0.804933652 zero Group1 303  737  403  87 0.776923077
## 949  1.945271e-01 0.805472896 zero Group1 303  736  404  87 0.776923077
## 666  1.943372e-01 0.805662766 zero Group1 303  735  405  87 0.776923077
## 1179 1.936139e-01 0.806386143  one Group1 304  735  405  86 0.779487179
## 106  1.931831e-01 0.806816936 zero Group1 304  734  406  86 0.779487179
## 640  1.924033e-01 0.807596698  one Group1 305  734  406  85 0.782051282
## 1235 1.913543e-01 0.808645710 zero Group1 305  733  407  85 0.782051282
## 863  1.910690e-01 0.808930963 zero Group1 305  732  408  85 0.782051282
## 774  1.903554e-01 0.809644639 zero Group1 305  731  409  85 0.782051282
## 1282 1.898673e-01 0.810132682 zero Group1 305  730  410  85 0.782051282
## 615  1.889292e-01 0.811070830 zero Group1 305  729  411  85 0.782051282
## 1233 1.881558e-01 0.811844230 zero Group1 305  728  412  85 0.782051282
## 879  1.877455e-01 0.812254548 zero Group1 305  727  413  85 0.782051282
## 771  1.864589e-01 0.813541055 zero Group1 305  726  414  85 0.782051282
## 1434 1.853672e-01 0.814632758 zero Group1 305  725  415  85 0.782051282
## 149  1.831867e-01 0.816813320 zero Group1 305  724  416  85 0.782051282
## 1351 1.830119e-01 0.816988081 zero Group1 305  723  417  85 0.782051282
## 290  1.829308e-01 0.817069232 zero Group1 305  722  418  85 0.782051282
## 820  1.818448e-01 0.818155244 zero Group1 305  721  419  85 0.782051282
## 320  1.810735e-01 0.818926454 zero Group1 305  720  420  85 0.782051282
## 1412 1.808688e-01 0.819131151  one Group1 306  720  420  84 0.784615385
## 72   1.803839e-01 0.819616094  one Group1 307  720  420  83 0.787179487
## 937  1.794745e-01 0.820525542 zero Group1 307  719  421  83 0.787179487
## 717  1.756514e-01 0.824348554 zero Group1 307  718  422  83 0.787179487
## 1249 1.753027e-01 0.824697301  one Group1 308  718  422  82 0.789743590
## 143  1.750146e-01 0.824985385  one Group1 309  718  422  81 0.792307692
## 128  1.740968e-01 0.825903222  one Group1 310  718  422  80 0.794871795
## 737  1.713034e-01 0.828696594 zero Group1 310  717  423  80 0.794871795
## 141  1.709775e-01 0.829022482 zero Group1 310  716  424  80 0.794871795
## 691  1.695469e-01 0.830453053  one Group1 311  716  424  79 0.797435897
## 54   1.678306e-01 0.832169354 zero Group1 311  715  425  79 0.797435897
## 47   1.672523e-01 0.832747653 zero Group1 311  714  426  79 0.797435897
## 1057 1.663333e-01 0.833666682  one Group1 312  714  426  78 0.800000000
## 826  1.656499e-01 0.834350064 zero Group1 312  713  427  78 0.800000000
## 160  1.656459e-01 0.834354147 zero Group1 312  712  428  78 0.800000000
## 1255 1.644538e-01 0.835546196 zero Group1 312  711  429  78 0.800000000
## 435  1.638716e-01 0.836128384 zero Group1 312  710  430  78 0.800000000
## 1379 1.627598e-01 0.837240234 zero Group1 312  709  431  78 0.800000000
## 609  1.627550e-01 0.837245047  one Group1 313  709  431  77 0.802564103
## 711  1.627052e-01 0.837294787 zero Group1 313  708  432  77 0.802564103
## 767  1.618484e-01 0.838151634 zero Group1 313  707  433  77 0.802564103
## 965  1.592281e-01 0.840771928  one Group1 314  707  433  76 0.805128205
## 399  1.575134e-01 0.842486605  one Group1 315  707  433  75 0.807692308
## 248  1.570092e-01 0.842990756 zero Group1 315  706  434  75 0.807692308
## 953  1.562963e-01 0.843703732 zero Group1 315  705  435  75 0.807692308
## 158  1.556915e-01 0.844308451 zero Group1 315  704  436  75 0.807692308
## 1224 1.554748e-01 0.844525158 zero Group1 315  703  437  75 0.807692308
## 1176 1.552621e-01 0.844737887  one Group1 316  703  437  74 0.810256410
## 1058 1.535509e-01 0.846449077 zero Group1 316  702  438  74 0.810256410
## 289  1.500509e-01 0.849949136  one Group1 317  702  438  73 0.812820513
## 899  1.468535e-01 0.853146493 zero Group1 317  701  439  73 0.812820513
## 643  1.464713e-01 0.853528664 zero Group1 317  700  440  73 0.812820513
## 189  1.464540e-01 0.853546038  one Group1 318  700  440  72 0.815384615
## 121  1.464433e-01 0.853556663 zero Group1 318  699  441  72 0.815384615
## 105  1.436477e-01 0.856352344 zero Group1 318  698  442  72 0.815384615
## 562  1.428959e-01 0.857104093  one Group1 319  698  442  71 0.817948718
## 15   1.426203e-01 0.857379735 zero Group1 319  697  443  71 0.817948718
## 192  1.423676e-01 0.857632369 zero Group1 319  696  444  71 0.817948718
## 220  1.421662e-01 0.857833818  one Group1 320  696  444  70 0.820512821
## 1266 1.419232e-01 0.858076781 zero Group1 320  695  445  70 0.820512821
## 317  1.418919e-01 0.858108073 zero Group1 320  694  446  70 0.820512821
## 642  1.418732e-01 0.858126760 zero Group1 320  693  447  70 0.820512821
## 770  1.412432e-01 0.858756781 zero Group1 320  692  448  70 0.820512821
## 1037 1.411496e-01 0.858850405 zero Group1 320  691  449  70 0.820512821
## 191  1.409622e-01 0.859037846 zero Group1 320  690  450  70 0.820512821
## 626  1.408284e-01 0.859171644 zero Group1 320  689  451  70 0.820512821
## 74   1.403525e-01 0.859647527  one Group1 321  689  451  69 0.823076923
## 88   1.389046e-01 0.861095384 zero Group1 321  688  452  69 0.823076923
## 251  1.386746e-01 0.861325443 zero Group1 321  687  453  69 0.823076923
## 1310 1.384185e-01 0.861581504 zero Group1 321  686  454  69 0.823076923
## 1178 1.383535e-01 0.861646503  one Group1 322  686  454  68 0.825641026
## 453  1.378068e-01 0.862193167 zero Group1 322  685  455  68 0.825641026
## 1108 1.374631e-01 0.862536907 zero Group1 322  684  456  68 0.825641026
## 663  1.370873e-01 0.862912670 zero Group1 322  683  457  68 0.825641026
## 1514 1.369448e-01 0.863055229 zero Group1 322  682  458  68 0.825641026
## 133  1.367933e-01 0.863206729 zero Group1 322  681  459  68 0.825641026
## 569  1.366500e-01 0.863349959  one Group1 323  681  459  67 0.828205128
## 1    1.357419e-01 0.864258081  one Group1 324  681  459  66 0.830769231
## 664  1.355940e-01 0.864405975 zero Group1 324  680  460  66 0.830769231
## 31   1.346053e-01 0.865394741 zero Group1 324  679  461  66 0.830769231
## 1132 1.343919e-01 0.865608141 zero Group1 324  678  462  66 0.830769231
## 762  1.343291e-01 0.865670949  one Group1 325  678  462  65 0.833333333
## 426  1.339381e-01 0.866061896 zero Group1 325  677  463  65 0.833333333
## 743  1.336870e-01 0.866313025 zero Group1 325  676  464  65 0.833333333
## 188  1.333870e-01 0.866613045 zero Group1 325  675  465  65 0.833333333
## 164  1.326410e-01 0.867358983 zero Group1 325  674  466  65 0.833333333
## 262  1.326010e-01 0.867399022 zero Group1 325  673  467  65 0.833333333
## 484  1.325802e-01 0.867419794  one Group1 326  673  467  64 0.835897436
## 862  1.320994e-01 0.867900610 zero Group1 326  672  468  64 0.835897436
## 1365 1.320168e-01 0.867983192 zero Group1 326  671  469  64 0.835897436
## 327  1.317191e-01 0.868280888 zero Group1 326  670  470  64 0.835897436
## 701  1.310824e-01 0.868917584 zero Group1 326  669  471  64 0.835897436
## 1131 1.279836e-01 0.872016400 zero Group1 326  668  472  64 0.835897436
## 497  1.276080e-01 0.872392029 zero Group1 326  667  473  64 0.835897436
## 858  1.274133e-01 0.872586653 zero Group1 326  666  474  64 0.835897436
## 1467 1.272583e-01 0.872741744 zero Group1 326  665  475  64 0.835897436
## 419  1.268105e-01 0.873189524 zero Group1 326  664  476  64 0.835897436
## 992  1.255165e-01 0.874483466 zero Group1 326  663  477  64 0.835897436
## 712  1.249732e-01 0.875026815 zero Group1 326  662  478  64 0.835897436
## 499  1.245684e-01 0.875431560 zero Group1 326  661  479  64 0.835897436
## 709  1.245635e-01 0.875436522 zero Group1 326  660  480  64 0.835897436
## 199  1.245114e-01 0.875488572 zero Group1 326  659  481  64 0.835897436
## 1239 1.244789e-01 0.875521086 zero Group1 326  658  482  64 0.835897436
## 107  1.232626e-01 0.876737393  one Group1 327  658  482  63 0.838461538
## 1223 1.230614e-01 0.876938589 zero Group1 327  657  483  63 0.838461538
## 1252 1.219112e-01 0.878088772 zero Group1 327  656  484  63 0.838461538
## 698  1.217076e-01 0.878292426 zero Group1 327  655  485  63 0.838461538
## 1355 1.212007e-01 0.878799252 zero Group1 327  654  486  63 0.838461538
## 1086 1.207102e-01 0.879289769  one Group1 328  654  486  62 0.841025641
## 1036 1.205303e-01 0.879469730 zero Group1 328  653  487  62 0.841025641
## 488  1.202473e-01 0.879752666  one Group1 329  653  487  61 0.843589744
## 177  1.180542e-01 0.881945781  one Group1 330  653  487  60 0.846153846
## 1203 1.179150e-01 0.882085040 zero Group1 330  652  488  60 0.846153846
## 102  1.167391e-01 0.883260868 zero Group1 330  651  489  60 0.846153846
## 366  1.163665e-01 0.883633472 zero Group1 330  650  490  60 0.846153846
## 357  1.158839e-01 0.884116106 zero Group1 330  649  491  60 0.846153846
## 1219 1.158375e-01 0.884162463 zero Group1 330  648  492  60 0.846153846
## 580  1.157922e-01 0.884207822 zero Group1 330  647  493  60 0.846153846
## 365  1.155248e-01 0.884475157 zero Group1 330  646  494  60 0.846153846
## 964  1.148913e-01 0.885108717  one Group1 331  646  494  59 0.848717949
## 16   1.143460e-01 0.885654025  one Group1 332  646  494  58 0.851282051
## 361  1.140369e-01 0.885963053 zero Group1 332  645  495  58 0.851282051
## 1307 1.129373e-01 0.887062743 zero Group1 332  644  496  58 0.851282051
## 843  1.122498e-01 0.887750164  one Group1 333  644  496  57 0.853846154
## 420  1.108101e-01 0.889189936 zero Group1 333  643  497  57 0.853846154
## 255  1.103180e-01 0.889682002 zero Group1 333  642  498  57 0.853846154
## 813  1.089889e-01 0.891011067  one Group1 334  642  498  56 0.856410256
## 1071 1.085562e-01 0.891443782 zero Group1 334  641  499  56 0.856410256
## 59   1.083940e-01 0.891605981 zero Group1 334  640  500  56 0.856410256
## 883  1.064577e-01 0.893542275  one Group1 335  640  500  55 0.858974359
## 734  1.062795e-01 0.893720537 zero Group1 335  639  501  55 0.858974359
## 681  1.061794e-01 0.893820554  one Group1 336  639  501  54 0.861538462
## 1246 1.055262e-01 0.894473761 zero Group1 336  638  502  54 0.861538462
## 1109 1.045992e-01 0.895400770 zero Group1 336  637  503  54 0.861538462
## 1106 1.039484e-01 0.896051563 zero Group1 336  636  504  54 0.861538462
## 1026 1.038898e-01 0.896110207 zero Group1 336  635  505  54 0.861538462
## 800  1.038793e-01 0.896120742 zero Group1 336  634  506  54 0.861538462
## 948  1.038269e-01 0.896173067 zero Group1 336  633  507  54 0.861538462
## 1471 1.036850e-01 0.896314964 zero Group1 336  632  508  54 0.861538462
## 244  1.035765e-01 0.896423459 zero Group1 336  631  509  54 0.861538462
## 476  1.025430e-01 0.897457041 zero Group1 336  630  510  54 0.861538462
## 821  1.017468e-01 0.898253247 zero Group1 336  629  511  54 0.861538462
## 1287 1.012153e-01 0.898784742 zero Group1 336  628  512  54 0.861538462
## 982  1.001102e-01 0.899889804 zero Group1 336  627  513  54 0.861538462
## 1064 9.982646e-02 0.900173545 zero Group1 336  626  514  54 0.861538462
## 636  9.953447e-02 0.900465526 zero Group1 336  625  515  54 0.861538462
## 898  9.924033e-02 0.900759667 zero Group1 336  624  516  54 0.861538462
## 430  9.835306e-02 0.901646942 zero Group1 336  623  517  54 0.861538462
## 1272 9.814776e-02 0.901852243 zero Group1 336  622  518  54 0.861538462
## 1353 9.716497e-02 0.902835026 zero Group1 336  621  519  54 0.861538462
## 902  9.644924e-02 0.903550759 zero Group1 336  620  520  54 0.861538462
## 1306 9.622733e-02 0.903772667 zero Group1 336  619  521  54 0.861538462
## 252  9.548796e-02 0.904512040 zero Group1 336  618  522  54 0.861538462
## 373  9.498409e-02 0.905015908 zero Group1 336  617  523  54 0.861538462
## 1422 9.439596e-02 0.905604042  one Group1 337  617  523  53 0.864102564
## 233  9.438945e-02 0.905610554 zero Group1 337  616  524  53 0.864102564
## 377  9.403164e-02 0.905968361 zero Group1 337  615  525  53 0.864102564
## 525  9.389697e-02 0.906103030 zero Group1 337  614  526  53 0.864102564
## 944  9.314927e-02 0.906850725 zero Group1 337  613  527  53 0.864102564
## 730  9.204157e-02 0.907958433  one Group1 338  613  527  52 0.866666667
## 1350 9.158331e-02 0.908416688 zero Group1 338  612  528  52 0.866666667
## 645  9.152111e-02 0.908478893 zero Group1 338  611  529  52 0.866666667
## 275  9.135763e-02 0.908642367 zero Group1 338  610  530  52 0.866666667
## 1336 9.123401e-02 0.908765987  one Group1 339  610  530  51 0.869230769
## 1038 9.095442e-02 0.909045584 zero Group1 339  609  531  51 0.869230769
## 1134 9.047414e-02 0.909525864 zero Group1 339  608  532  51 0.869230769
## 135  9.044654e-02 0.909553461 zero Group1 339  607  533  51 0.869230769
## 1118 9.015964e-02 0.909840360 zero Group1 339  606  534  51 0.869230769
## 1030 8.950778e-02 0.910492219 zero Group1 339  605  535  51 0.869230769
## 378  8.936960e-02 0.910630405 zero Group1 339  604  536  51 0.869230769
## 485  8.915872e-02 0.910841279  one Group1 340  604  536  50 0.871794872
## 536  8.910169e-02 0.910898305 zero Group1 340  603  537  50 0.871794872
## 1220 8.862568e-02 0.911374323 zero Group1 340  602  538  50 0.871794872
## 897  8.841560e-02 0.911584400 zero Group1 340  601  539  50 0.871794872
## 786  8.799063e-02 0.912009366 zero Group1 340  600  540  50 0.871794872
## 162  8.672860e-02 0.913271405 zero Group1 340  599  541  50 0.871794872
## 461  8.622186e-02 0.913778141 zero Group1 340  598  542  50 0.871794872
## 195  8.600835e-02 0.913991652 zero Group1 340  597  543  50 0.871794872
## 539  8.577554e-02 0.914224461 zero Group1 340  596  544  50 0.871794872
## 1208 8.564219e-02 0.914357811  one Group1 341  596  544  49 0.874358974
## 629  8.554356e-02 0.914456442 zero Group1 341  595  545  49 0.874358974
## 127  8.539806e-02 0.914601937 zero Group1 341  594  546  49 0.874358974
## 552  8.528963e-02 0.914710365 zero Group1 341  593  547  49 0.874358974
## 412  8.486369e-02 0.915136307 zero Group1 341  592  548  49 0.874358974
## 1007 8.473178e-02 0.915268220 zero Group1 341  591  549  49 0.874358974
## 4    8.430939e-02 0.915690608 zero Group1 341  590  550  49 0.874358974
## 627  8.368874e-02 0.916311257 zero Group1 341  589  551  49 0.874358974
## 888  8.350423e-02 0.916495770 zero Group1 341  588  552  49 0.874358974
## 922  8.309501e-02 0.916904986 zero Group1 341  587  553  49 0.874358974
## 1158 8.241883e-02 0.917581171 zero Group1 341  586  554  49 0.874358974
## 1289 8.213520e-02 0.917864799  one Group1 342  586  554  48 0.876923077
## 635  8.209232e-02 0.917907678 zero Group1 342  585  555  48 0.876923077
## 588  8.116788e-02 0.918832116 zero Group1 343  584  556  47 0.879487179
## 604  8.116788e-02 0.918832116  one Group1 343  584  556  47 0.879487179
## 1398 8.113828e-02 0.918861717 zero Group1 343  583  557  47 0.879487179
## 18   8.092313e-02 0.919076875 zero Group1 343  582  558  47 0.879487179
## 1477 8.076379e-02 0.919236213 zero Group1 343  581  559  47 0.879487179
## 212  8.062818e-02 0.919371821  one Group1 344  581  559  46 0.882051282
## 1301 8.006844e-02 0.919931561 zero Group1 344  580  560  46 0.882051282
## 92   7.999391e-02 0.920006089 zero Group1 344  579  561  46 0.882051282
## 1173 7.946965e-02 0.920530349  one Group1 345  579  561  45 0.884615385
## 1403 7.934657e-02 0.920653425 zero Group1 345  578  562  45 0.884615385
## 1447 7.914092e-02 0.920859084 zero Group1 345  577  563  45 0.884615385
## 1521 7.911475e-02 0.920885250 zero Group1 345  576  564  45 0.884615385
## 1316 7.906739e-02 0.920932606 zero Group1 345  575  565  45 0.884615385
## 544  7.902199e-02 0.920978010 zero Group1 345  574  566  45 0.884615385
## 658  7.856071e-02 0.921439290 zero Group1 345  573  567  45 0.884615385
## 931  7.847234e-02 0.921527661  one Group1 346  573  567  44 0.887179487
## 1489 7.806524e-02 0.921934761 zero Group1 346  572  568  44 0.887179487
## 1472 7.784893e-02 0.922151066 zero Group1 346  571  569  44 0.887179487
## 379  7.773632e-02 0.922263682 zero Group1 346  570  570  44 0.887179487
## 24   7.750961e-02 0.922490388  one Group1 347  570  570  43 0.889743590
## 292  7.705320e-02 0.922946803 zero Group1 347  569  571  43 0.889743590
## 790  7.689464e-02 0.923105359 zero Group1 347  568  572  43 0.889743590
## 537  7.669567e-02 0.923304327 zero Group1 347  567  573  43 0.889743590
## 1308 7.641334e-02 0.923586659 zero Group1 347  566  574  43 0.889743590
## 952  7.636977e-02 0.923630230 zero Group1 347  565  575  43 0.889743590
## 1401 7.630111e-02 0.923698887 zero Group1 347  564  576  43 0.889743590
## 425  7.615712e-02 0.923842885 zero Group1 347  563  577  43 0.889743590
## 1470 7.548844e-02 0.924511559 zero Group1 347  562  578  43 0.889743590
## 169  7.536162e-02 0.924638383 zero Group1 347  561  579  43 0.889743590
## 1245 7.522008e-02 0.924779922 zero Group1 347  560  580  43 0.889743590
## 139  7.469441e-02 0.925305590 zero Group1 347  559  581  43 0.889743590
## 638  7.450341e-02 0.925496586  one Group1 348  559  581  42 0.892307692
## 1299 7.448611e-02 0.925513893  one Group1 349  559  581  41 0.894871795
## 1304 7.430097e-02 0.925699033 zero Group1 349  558  582  41 0.894871795
## 315  7.426277e-02 0.925737232 zero Group1 349  557  583  41 0.894871795
## 874  7.418773e-02 0.925812267 zero Group1 349  556  584  41 0.894871795
## 69   7.396974e-02 0.926030256  one Group1 350  556  584  40 0.897435897
## 848  7.390407e-02 0.926095933  one Group1 351  556  584  39 0.900000000
## 1175 7.388927e-02 0.926110730  one Group1 352  556  584  38 0.902564103
## 314  7.362016e-02 0.926379837 zero Group1 352  555  585  38 0.902564103
## 348  7.320997e-02 0.926790029 zero Group1 352  554  586  38 0.902564103
## 710  7.306296e-02 0.926937036 zero Group1 352  553  587  38 0.902564103
## 1393 7.292686e-02 0.927073136 zero Group1 352  552  588  38 0.902564103
## 815  7.266656e-02 0.927333437 zero Group1 352  551  589  38 0.902564103
## 359  7.255857e-02 0.927441433 zero Group1 352  550  590  38 0.902564103
## 1199 7.252558e-02 0.927474417 zero Group1 352  549  591  38 0.902564103
## 1469 7.246365e-02 0.927536346 zero Group1 352  548  592  38 0.902564103
## 73   7.242493e-02 0.927575067 zero Group1 352  547  593  38 0.902564103
## 82   7.170103e-02 0.928298973 zero Group1 352  546  594  38 0.902564103
## 1020 7.140652e-02 0.928593479 zero Group1 352  545  595  38 0.902564103
## 40   7.129180e-02 0.928708196 zero Group1 352  544  596  38 0.902564103
## 890  7.125463e-02 0.928745367 zero Group1 352  543  597  38 0.902564103
## 369  7.049627e-02 0.929503731 zero Group1 352  542  598  38 0.902564103
## 527  6.957380e-02 0.930426195 zero Group1 352  541  599  38 0.902564103
## 1475 6.952871e-02 0.930471294 zero Group1 352  540  600  38 0.902564103
## 1402 6.948842e-02 0.930511579 zero Group1 352  539  601  38 0.902564103
## 1044 6.918051e-02 0.930819489 zero Group1 352  538  602  38 0.902564103
## 254  6.877591e-02 0.931224085 zero Group1 352  537  603  38 0.902564103
## 553  6.871232e-02 0.931287676 zero Group1 352  536  604  38 0.902564103
## 362  6.865142e-02 0.931348585 zero Group1 352  535  605  38 0.902564103
## 532  6.838372e-02 0.931616277 zero Group1 352  534  606  38 0.902564103
## 1136 6.746800e-02 0.932531998 zero Group1 352  533  607  38 0.902564103
## 1394 6.740627e-02 0.932593726 zero Group1 352  532  608  38 0.902564103
## 1444 6.722654e-02 0.932773463 zero Group1 352  531  609  38 0.902564103
## 1305 6.574268e-02 0.934257321 zero Group1 352  530  610  38 0.902564103
## 1275 6.567254e-02 0.934327461 zero Group1 352  529  611  38 0.902564103
## 1216 6.499334e-02 0.935006656  one Group1 353  529  611  37 0.905128205
## 1123 6.459291e-02 0.935407095 zero Group1 353  528  612  37 0.905128205
## 311  6.442221e-02 0.935577795 zero Group1 353  527  613  37 0.905128205
## 1442 6.417097e-02 0.935829028 zero Group1 353  526  614  37 0.905128205
## 1281 6.411875e-02 0.935881250 zero Group1 353  525  615  37 0.905128205
## 1066 6.348719e-02 0.936512806 zero Group1 353  524  616  37 0.905128205
## 779  6.333631e-02 0.936663687 zero Group1 353  523  617  37 0.905128205
## 941  6.315494e-02 0.936845057 zero Group1 353  522  618  37 0.905128205
## 547  6.297358e-02 0.937026419 zero Group1 353  521  619  37 0.905128205
## 785  6.276407e-02 0.937235929 zero Group1 353  520  620  37 0.905128205
## 44   6.244083e-02 0.937559169 zero Group1 353  519  621  37 0.905128205
## 431  6.176263e-02 0.938237373 zero Group1 353  518  622  37 0.905128205
## 1516 6.173059e-02 0.938269407 zero Group1 353  517  623  37 0.905128205
## 1204 6.163200e-02 0.938368000 zero Group1 353  516  624  37 0.905128205
## 1035 6.149297e-02 0.938507032 zero Group1 353  515  625  37 0.905128205
## 46   6.133311e-02 0.938666891 zero Group1 353  514  626  37 0.905128205
## 1221 6.076515e-02 0.939234853 zero Group1 353  513  627  37 0.905128205
## 987  6.072267e-02 0.939277329 zero Group1 353  512  628  37 0.905128205
## 1085 6.070837e-02 0.939291630  one Group1 354  512  628  36 0.907692308
## 829  6.037675e-02 0.939623252 zero Group1 354  511  629  36 0.907692308
## 814  5.953732e-02 0.940462682 zero Group1 354  510  630  36 0.907692308
## 393  5.947100e-02 0.940529000 zero Group1 354  509  631  36 0.907692308
## 592  5.898137e-02 0.941018630 zero Group1 354  508  632  36 0.907692308
## 1271 5.768770e-02 0.942312296 zero Group1 354  507  633  36 0.907692308
## 174  5.703248e-02 0.942967515 zero Group1 354  506  634  36 0.907692308
## 429  5.696211e-02 0.943037894 zero Group1 354  505  635  36 0.907692308
## 842  5.683653e-02 0.943163469  one Group1 355  505  635  35 0.910256410
## 1190 5.678546e-02 0.943214536 zero Group1 355  504  636  35 0.910256410
## 179  5.678283e-02 0.943217173  one Group1 356  504  636  34 0.912820513
## 1124 5.625966e-02 0.943740338 zero Group1 356  503  637  34 0.912820513
## 433  5.625578e-02 0.943744216 zero Group1 356  502  638  34 0.912820513
## 39   5.611720e-02 0.943882797 zero Group1 356  501  639  34 0.912820513
## 622  5.573194e-02 0.944268055 zero Group1 356  500  640  34 0.912820513
## 1508 5.547887e-02 0.944521125 zero Group1 356  499  641  34 0.912820513
## 300  5.514364e-02 0.944856357  one Group1 357  499  641  33 0.915384615
## 870  5.497083e-02 0.945029166 zero Group1 357  498  642  33 0.915384615
## 491  5.496810e-02 0.945031904  one Group1 358  498  642  32 0.917948718
## 157  5.486090e-02 0.945139095  one Group1 359  498  642  31 0.920512821
## 670  5.444970e-02 0.945550304 zero Group1 359  497  643  31 0.920512821
## 817  5.439327e-02 0.945606727 zero Group1 359  496  644  31 0.920512821
## 1354 5.347130e-02 0.946528703 zero Group1 359  495  645  31 0.920512821
## 571  5.318725e-02 0.946812745 zero Group1 359  494  646  31 0.920512821
## 247  5.318315e-02 0.946816850 zero Group1 359  493  647  31 0.920512821
## 130  5.306868e-02 0.946931325 zero Group1 359  492  648  31 0.920512821
## 457  5.277456e-02 0.947225444 zero Group1 359  491  649  31 0.920512821
## 394  5.271941e-02 0.947280586  one Group1 360  491  649  30 0.923076923
## 256  5.248441e-02 0.947515592 zero Group1 360  490  650  30 0.923076923
## 651  5.239169e-02 0.947608314 zero Group1 360  489  651  30 0.923076923
## 740  5.236249e-02 0.947637506 zero Group1 360  488  652  30 0.923076923
## 1466 5.231696e-02 0.947683036 zero Group1 360  487  653  30 0.923076923
## 852  5.224968e-02 0.947750319  one Group1 361  487  653  29 0.925641026
## 261  5.220835e-02 0.947791655 zero Group1 361  486  654  29 0.925641026
## 1031 5.220332e-02 0.947796680 zero Group1 361  485  655  29 0.925641026
## 1368 5.209424e-02 0.947905764 zero Group1 361  484  656  29 0.925641026
## 759  5.186135e-02 0.948138651  one Group1 362  484  656  28 0.928205128
## 472  5.171942e-02 0.948280577 zero Group1 362  483  657  28 0.928205128
## 868  5.156130e-02 0.948438697 zero Group1 362  482  658  28 0.928205128
## 1063 5.140829e-02 0.948591713 zero Group1 362  481  659  28 0.928205128
## 454  5.113306e-02 0.948866941 zero Group1 362  480  660  28 0.928205128
## 309  5.093273e-02 0.949067272  one Group1 363  480  660  27 0.930769231
## 272  5.075205e-02 0.949247953 zero Group1 363  479  661  27 0.930769231
## 955  5.075093e-02 0.949249066 zero Group1 363  478  662  27 0.930769231
## 1488 4.995840e-02 0.950041603 zero Group1 363  477  663  27 0.930769231
## 662  4.948140e-02 0.950518604 zero Group1 363  476  664  27 0.930769231
## 943  4.934064e-02 0.950659357 zero Group1 363  475  665  27 0.930769231
## 612  4.929047e-02 0.950709533 zero Group1 363  474  666  27 0.930769231
## 30   4.922498e-02 0.950775016 zero Group1 363  473  667  27 0.930769231
## 1525 4.896144e-02 0.951038558 zero Group1 363  472  668  27 0.930769231
## 508  4.877587e-02 0.951224133 zero Group1 363  471  669  27 0.930769231
## 607  4.869189e-02 0.951308113  one Group1 364  471  669  26 0.933333333
## 1259 4.745284e-02 0.952547163 zero Group1 364  470  670  26 0.933333333
## 432  4.743833e-02 0.952561665 zero Group1 364  469  671  26 0.933333333
## 1435 4.690063e-02 0.953099366 zero Group1 364  468  672  26 0.933333333
## 1468 4.686207e-02 0.953137930 zero Group1 364  467  673  26 0.933333333
## 123  4.682900e-02 0.953170996 zero Group1 364  466  674  26 0.933333333
## 1303 4.455803e-02 0.955441974 zero Group1 364  465  675  26 0.933333333
## 892  4.440441e-02 0.955595586 zero Group1 364  464  676  26 0.933333333
## 1425 4.404711e-02 0.955952890 zero Group1 364  463  677  26 0.933333333
## 305  4.402661e-02 0.955973390  one Group1 365  463  677  25 0.935897436
## 822  4.399021e-02 0.956009794 zero Group1 365  462  678  25 0.935897436
## 680  4.381311e-02 0.956186887  one Group1 366  462  678  24 0.938461538
## 1148 4.380964e-02 0.956190363 zero Group1 366  461  679  24 0.938461538
## 1184 4.341518e-02 0.956584822 zero Group1 366  460  680  24 0.938461538
## 1450 4.318294e-02 0.956817061  one Group1 367  460  680  23 0.941025641
## 589  4.302609e-02 0.956973910 zero Group1 367  459  681  23 0.941025641
## 1240 4.283531e-02 0.957164690 zero Group1 367  458  682  23 0.941025641
## 940  4.276060e-02 0.957239397 zero Group1 367  457  683  23 0.941025641
## 1524 4.275734e-02 0.957242660 zero Group1 367  456  684  23 0.941025641
## 376  4.254933e-02 0.957450666 zero Group1 367  455  685  23 0.941025641
## 259  4.246724e-02 0.957532760 zero Group1 367  454  686  23 0.941025641
## 1503 4.227257e-02 0.957727429 zero Group1 367  453  687  23 0.941025641
## 194  4.194884e-02 0.958051160 zero Group1 367  452  688  23 0.941025641
## 1360 4.129462e-02 0.958705384 zero Group1 367  451  689  23 0.941025641
## 267  4.126395e-02 0.958736051  one Group1 368  451  689  22 0.943589744
## 556  4.112647e-02 0.958873529 zero Group1 368  450  690  22 0.943589744
## 1202 4.085813e-02 0.959141869 zero Group1 368  449  691  22 0.943589744
## 824  4.084507e-02 0.959154926 zero Group1 368  448  692  22 0.943589744
## 1197 4.074813e-02 0.959251866 zero Group1 368  447  693  22 0.943589744
## 116  3.978768e-02 0.960212320 zero Group1 368  446  694  22 0.943589744
## 1391 3.974513e-02 0.960254870 zero Group1 368  445  695  22 0.943589744
## 456  3.966419e-02 0.960335813 zero Group1 368  444  696  22 0.943589744
## 1138 3.964732e-02 0.960352682 zero Group1 368  443  697  22 0.943589744
## 1029 3.949352e-02 0.960506484 zero Group1 368  442  698  22 0.943589744
## 1213 3.917833e-02 0.960821670  one Group1 369  442  698  21 0.946153846
## 1052 3.886336e-02 0.961136635  one Group1 370  442  698  20 0.948717949
## 516  3.881828e-02 0.961181715 zero Group1 370  441  699  20 0.948717949
## 501  3.877532e-02 0.961224679 zero Group1 370  440  700  20 0.948717949
## 697  3.877281e-02 0.961227193 zero Group1 370  439  701  20 0.948717949
## 860  3.835181e-02 0.961648192 zero Group1 370  438  702  20 0.948717949
## 617  3.828755e-02 0.961712446 zero Group1 370  437  703  20 0.948717949
## 372  3.817657e-02 0.961823434 zero Group1 370  436  704  20 0.948717949
## 650  3.814263e-02 0.961857371 zero Group1 370  435  705  20 0.948717949
## 1329 3.782373e-02 0.962176275  one Group1 371  435  705  19 0.951282051
## 797  3.764024e-02 0.962359760 zero Group1 371  434  706  19 0.951282051
## 780  3.742649e-02 0.962573510 zero Group1 371  433  707  19 0.951282051
## 458  3.698725e-02 0.963012755 zero Group1 371  432  708  19 0.951282051
## 1358 3.690716e-02 0.963092841 zero Group1 371  431  709  19 0.951282051
## 715  3.679773e-02 0.963202268 zero Group1 371  430  710  19 0.951282051
## 542  3.655566e-02 0.963444341 zero Group1 371  429  711  19 0.951282051
## 1015 3.654782e-02 0.963452175 zero Group1 371  428  712  19 0.951282051
## 722  3.578715e-02 0.964212850  one Group1 372  428  712  18 0.953846154
## 914  3.570794e-02 0.964292064 zero Group1 372  427  713  18 0.953846154
## 591  3.559349e-02 0.964406505 zero Group1 372  426  714  18 0.953846154
## 599  3.553306e-02 0.964466937  one Group1 373  426  714  17 0.956410256
## 1263 3.535160e-02 0.964648400 zero Group1 373  425  715  17 0.956410256
## 788  3.535048e-02 0.964649517 zero Group1 373  424  716  17 0.956410256
## 719  3.529004e-02 0.964709964 zero Group1 373  423  717  17 0.956410256
## 1198 3.525817e-02 0.964741826 zero Group1 373  422  718  17 0.956410256
## 1511 3.496963e-02 0.965030372 zero Group1 373  421  719  17 0.956410256
## 1112 3.495130e-02 0.965048704 zero Group1 373  420  720  17 0.956410256
## 1144 3.494357e-02 0.965056431 zero Group1 373  419  721  17 0.956410256
## 392  3.462540e-02 0.965374604 zero Group1 373  418  722  17 0.956410256
## 404  3.458391e-02 0.965416092 zero Group1 373  417  723  17 0.956410256
## 567  3.455393e-02 0.965446074  one Group1 374  417  723  16 0.958974359
## 735  3.450576e-02 0.965494242 zero Group1 374  416  724  16 0.958974359
## 633  3.441001e-02 0.965589985 zero Group1 374  415  725  16 0.958974359
## 1400 3.435888e-02 0.965641122 zero Group1 374  414  726  16 0.958974359
## 1135 3.399218e-02 0.966007818 zero Group1 374  413  727  16 0.958974359
## 375  3.379051e-02 0.966209490 zero Group1 374  412  728  16 0.958974359
## 530  3.371766e-02 0.966282342 zero Group1 374  411  729  16 0.958974359
## 77   3.367750e-02 0.966322504 zero Group1 374  410  730  16 0.958974359
## 1288 3.366909e-02 0.966330912  one Group1 375  410  730  15 0.961538462
## 546  3.361094e-02 0.966389064 zero Group1 375  409  731  15 0.961538462
## 43   3.309725e-02 0.966902748 zero Group1 375  408  732  15 0.961538462
## 387  3.286679e-02 0.967133205 zero Group1 375  407  733  15 0.961538462
## 518  3.245047e-02 0.967549525 zero Group1 375  406  734  15 0.961538462
## 67   3.235075e-02 0.967649251 zero Group1 375  405  735  15 0.961538462
## 1115 3.193647e-02 0.968063530 zero Group1 375  404  736  15 0.961538462
## 726  3.193595e-02 0.968064055  one Group1 376  404  736  14 0.964102564
## 120  3.192427e-02 0.968075734 zero Group1 376  403  737  14 0.964102564
## 754  3.161103e-02 0.968388971 zero Group1 376  402  738  14 0.964102564
## 1013 3.155749e-02 0.968442511 zero Group1 376  401  739  14 0.964102564
## 1017 3.109036e-02 0.968909636 zero Group1 376  400  740  14 0.964102564
## 869  3.106029e-02 0.968939710 zero Group1 376  399  741  14 0.964102564
## 947  3.091189e-02 0.969088113 zero Group1 376  398  742  14 0.964102564
## 421  3.080703e-02 0.969192974 zero Group1 376  397  743  14 0.964102564
## 706  3.076799e-02 0.969232012 zero Group1 376  396  744  14 0.964102564
## 1024 3.058137e-02 0.969418630 zero Group1 376  395  745  14 0.964102564
## 370  3.050480e-02 0.969495203 zero Group1 376  394  746  14 0.964102564
## 321  3.050477e-02 0.969495233 zero Group1 376  393  747  14 0.964102564
## 616  3.042676e-02 0.969573241 zero Group1 376  392  748  14 0.964102564
## 1185 3.014880e-02 0.969851200 zero Group1 376  391  749  14 0.964102564
## 776  3.014036e-02 0.969859643 zero Group1 376  390  750  14 0.964102564
## 90   2.953216e-02 0.970467845 zero Group1 376  389  751  14 0.964102564
## 1113 2.940426e-02 0.970595738 zero Group1 376  388  752  14 0.964102564
## 1513 2.908602e-02 0.970913978 zero Group1 376  387  753  14 0.964102564
## 208  2.847113e-02 0.971528869 zero Group1 376  386  754  14 0.964102564
## 1041 2.769408e-02 0.972305916 zero Group1 376  385  755  14 0.964102564
## 383  2.747620e-02 0.972523805 zero Group1 376  384  756  14 0.964102564
## 746  2.729694e-02 0.972703058 zero Group1 376  383  757  14 0.964102564
## 1407 2.716636e-02 0.972833643 zero Group1 376  382  758  14 0.964102564
## 708  2.714072e-02 0.972859276 zero Group1 376  381  759  14 0.964102564
## 1428 2.710119e-02 0.972898806 zero Group1 376  380  760  14 0.964102564
## 907  2.698186e-02 0.973018136 zero Group1 376  379  761  14 0.964102564
## 509  2.695067e-02 0.973049331 zero Group1 376  378  762  14 0.964102564
## 1325 2.667596e-02 0.973324042 zero Group1 376  377  763  14 0.964102564
## 1455 2.662659e-02 0.973373409  one Group1 377  377  763  13 0.966666667
## 398  2.659724e-02 0.973402757  one Group1 378  377  763  12 0.969230769
## 1328 2.649467e-02 0.973505326 zero Group1 378  376  764  12 0.969230769
## 540  2.642754e-02 0.973572457 zero Group1 378  375  765  12 0.969230769
## 781  2.642022e-02 0.973579781 zero Group1 378  374  766  12 0.969230769
## 1072 2.628466e-02 0.973715341 zero Group1 378  373  767  12 0.969230769
## 999  2.602394e-02 0.973976064 zero Group1 378  372  768  12 0.969230769
## 36   2.574896e-02 0.974251036 zero Group1 378  371  769  12 0.969230769
## 1280 2.567083e-02 0.974329168 zero Group1 378  370  770  12 0.969230769
## 1062 2.547929e-02 0.974520708 zero Group1 378  369  771  12 0.969230769
## 995  2.541883e-02 0.974581175 zero Group1 378  368  772  12 0.969230769
## 882  2.538180e-02 0.974618204  one Group1 379  368  772  11 0.971794872
## 1139 2.514170e-02 0.974858303 zero Group1 379  367  773  11 0.971794872
## 700  2.499224e-02 0.975007761 zero Group1 379  366  774  11 0.971794872
## 613  2.486234e-02 0.975137657 zero Group1 379  365  775  11 0.971794872
## 1313 2.466615e-02 0.975333847 zero Group1 379  364  776  11 0.971794872
## 784  2.454964e-02 0.975450359 zero Group1 379  363  777  11 0.971794872
## 1373 2.447922e-02 0.975520784 zero Group1 379  362  778  11 0.971794872
## 333  2.438412e-02 0.975615883 zero Group1 379  361  779  11 0.971794872
## 1107 2.398717e-02 0.976012826 zero Group1 379  360  780  11 0.971794872
## 336  2.394358e-02 0.976056421 zero Group1 379  359  781  11 0.971794872
## 618  2.381694e-02 0.976183059 zero Group1 379  358  782  11 0.971794872
## 1498 2.379395e-02 0.976206047 zero Group1 379  357  783  11 0.971794872
## 1189 2.351048e-02 0.976489520 zero Group1 379  356  784  11 0.971794872
## 951  2.322518e-02 0.976774823 zero Group1 379  355  785  11 0.971794872
## 388  2.317602e-02 0.976823978 zero Group1 379  354  786  11 0.971794872
## 1022 2.310758e-02 0.976892423 zero Group1 379  353  787  11 0.971794872
## 1237 2.275894e-02 0.977241062 zero Group1 379  352  788  11 0.971794872
## 328  2.242470e-02 0.977575302 zero Group1 379  351  789  11 0.971794872
## 1364 2.239626e-02 0.977603743 zero Group1 379  350  790  11 0.971794872
## 55   2.226494e-02 0.977735057 zero Group1 379  349  791  11 0.971794872
## 1145 2.165543e-02 0.978344567 zero Group1 379  348  792  11 0.971794872
## 799  2.092185e-02 0.979078148 zero Group1 379  347  793  11 0.971794872
## 713  2.089723e-02 0.979102774 zero Group1 379  346  794  11 0.971794872
## 880  2.078951e-02 0.979210488 zero Group1 379  345  795  11 0.971794872
## 460  2.017912e-02 0.979820877 zero Group1 379  344  796  11 0.971794872
## 584  2.005743e-02 0.979942566 zero Group1 379  343  797  11 0.971794872
## 514  1.991387e-02 0.980086135 zero Group1 379  342  798  11 0.971794872
## 1151 1.978752e-02 0.980212478 zero Group1 379  341  799  11 0.971794872
## 1406 1.976115e-02 0.980238851 zero Group1 379  340  800  11 0.971794872
## 1348 1.964860e-02 0.980351400 zero Group1 379  339  801  11 0.971794872
## 1429 1.961515e-02 0.980384851 zero Group1 379  338  802  11 0.971794872
## 1485 1.953170e-02 0.980468305 zero Group1 379  337  803  11 0.971794872
## 535  1.916506e-02 0.980834944 zero Group1 379  336  804  11 0.971794872
## 1344 1.915763e-02 0.980842369 zero Group1 379  335  805  11 0.971794872
## 1192 1.911030e-02 0.980889702 zero Group1 379  334  806  11 0.971794872
## 1427 1.902705e-02 0.980972949 zero Group1 379  333  807  11 0.971794872
## 586  1.891436e-02 0.981085636 zero Group1 379  332  808  11 0.971794872
## 89   1.887975e-02 0.981120255 zero Group1 379  331  809  11 0.971794872
## 1101 1.886849e-02 0.981131513 zero Group1 379  330  810  11 0.971794872
## 757  1.868580e-02 0.981314197 zero Group1 379  329  811  11 0.971794872
## 963  1.863671e-02 0.981363295 zero Group1 379  328  812  11 0.971794872
## 474  1.863030e-02 0.981369700 zero Group1 379  327  813  11 0.971794872
## 1009 1.862147e-02 0.981378535 zero Group1 379  326  814  11 0.971794872
## 600  1.859059e-02 0.981409414  one Group1 380  326  814  10 0.974358974
## 443  1.823978e-02 0.981760219  one Group1 381  326  814   9 0.976923077
## 545  1.823884e-02 0.981761161 zero Group1 381  325  815   9 0.976923077
## 950  1.805245e-02 0.981947552 zero Group1 381  324  816   9 0.976923077
## 87   1.797130e-02 0.982028700 zero Group1 381  323  817   9 0.976923077
## 695  1.795411e-02 0.982045893 zero Group1 381  322  818   9 0.976923077
## 1157 1.794257e-02 0.982057432 zero Group1 381  321  819   9 0.976923077
## 50   1.787617e-02 0.982123831 zero Group1 381  320  820   9 0.976923077
## 856  1.786154e-02 0.982138461 zero Group1 381  319  821   9 0.976923077
## 1487 1.770779e-02 0.982292205 zero Group1 381  318  822   9 0.976923077
## 1530 1.755310e-02 0.982446898 zero Group1 381  317  823   9 0.976923077
## 245  1.752552e-02 0.982474482 zero Group1 381  316  824   9 0.976923077
## 679  1.744265e-02 0.982557353 zero Group1 381  315  825   9 0.976923077
## 625  1.726107e-02 0.982738934 zero Group1 381  314  826   9 0.976923077
## 325  1.719931e-02 0.982800689 zero Group1 381  313  827   9 0.976923077
## 1361 1.719076e-02 0.982809238 zero Group1 381  312  828   9 0.976923077
## 958  1.718255e-02 0.982817454 zero Group1 381  311  829   9 0.976923077
## 503  1.708321e-02 0.982916789 zero Group1 381  310  830   9 0.976923077
## 1129 1.694607e-02 0.983053928 zero Group1 381  309  831   9 0.976923077
## 1159 1.679289e-02 0.983207110 zero Group1 381  308  832   9 0.976923077
## 417  1.671175e-02 0.983288245 zero Group1 381  307  833   9 0.976923077
## 1258 1.670873e-02 0.983291270 zero Group1 381  306  834   9 0.976923077
## 1321 1.652992e-02 0.983470079 zero Group1 381  305  835   9 0.976923077
## 1241 1.631164e-02 0.983688358 zero Group1 381  304  836   9 0.976923077
## 1501 1.625929e-02 0.983740708 zero Group1 381  303  837   9 0.976923077
## 960  1.612837e-02 0.983871631 zero Group1 381  302  838   9 0.976923077
## 477  1.604048e-02 0.983959522 zero Group1 381  301  839   9 0.976923077
## 1349 1.583373e-02 0.984166272 zero Group1 381  300  840   9 0.976923077
## 867  1.571752e-02 0.984282481 zero Group1 381  299  841   9 0.976923077
## 523  1.569831e-02 0.984301686 zero Group1 381  298  842   9 0.976923077
## 1025 1.568293e-02 0.984317070 zero Group1 381  297  843   9 0.976923077
## 994  1.565501e-02 0.984344987 zero Group1 381  296  844   9 0.976923077
## 312  1.561332e-02 0.984386678 zero Group1 381  295  845   9 0.976923077
## 124  1.548570e-02 0.984514299 zero Group1 381  294  846   9 0.976923077
## 574  1.496721e-02 0.985032794 zero Group1 381  293  847   9 0.976923077
## 979  1.494254e-02 0.985057464 zero Group1 381  292  848   9 0.976923077
## 573  1.494248e-02 0.985057520 zero Group1 381  291  849   9 0.976923077
## 1083 1.493166e-02 0.985068337 zero Group1 381  290  850   9 0.976923077
## 1028 1.477798e-02 0.985222016 zero Group1 381  289  851   9 0.976923077
## 778  1.470416e-02 0.985295841 zero Group1 381  288  852   9 0.976923077
## 459  1.460366e-02 0.985396342 zero Group1 381  287  853   9 0.976923077
## 896  1.459062e-02 0.985409375 zero Group1 381  286  854   9 0.976923077
## 94   1.432177e-02 0.985678231 zero Group1 381  285  855   9 0.976923077
## 823  1.429312e-02 0.985706884 zero Group1 381  284  856   9 0.976923077
## 1293 1.426436e-02 0.985735636  one Group1 382  284  856   8 0.979487179
## 1390 1.414112e-02 0.985858879 zero Group1 382  283  857   8 0.979487179
## 396  1.381155e-02 0.986188453 zero Group1 382  282  858   8 0.979487179
## 1251 1.359936e-02 0.986400642 zero Group1 382  281  859   8 0.979487179
## 818  1.355001e-02 0.986449986 zero Group1 382  280  860   8 0.979487179
## 37   1.347443e-02 0.986525565 zero Group1 382  279  861   8 0.979487179
## 391  1.347002e-02 0.986529975 zero Group1 382  278  862   8 0.979487179
## 741  1.336587e-02 0.986634129 zero Group1 382  277  863   8 0.979487179
## 407  1.336040e-02 0.986639597 zero Group1 382  276  864   8 0.979487179
## 1236 1.334632e-02 0.986653676 zero Group1 382  275  865   8 0.979487179
## 959  1.331562e-02 0.986684384 zero Group1 382  274  866   8 0.979487179
## 1267 1.324369e-02 0.986756306 zero Group1 382  273  867   8 0.979487179
## 1018 1.307646e-02 0.986923543 zero Group1 382  272  868   8 0.979487179
## 1209 1.305712e-02 0.986942882  one Group1 383  272  868   7 0.982051282
## 1392 1.301554e-02 0.986984461 zero Group1 383  271  869   7 0.982051282
## 478  1.280531e-02 0.987194685 zero Group1 383  270  870   7 0.982051282
## 1059 1.278743e-02 0.987212569 zero Group1 383  269  871   7 0.982051282
## 507  1.263264e-02 0.987367363 zero Group1 383  268  872   7 0.982051282
## 699  1.262918e-02 0.987370818 zero Group1 383  267  873   7 0.982051282
## 1034 1.226160e-02 0.987738402 zero Group1 383  266  874   7 0.982051282
## 1326 1.222798e-02 0.987772019 zero Group1 383  265  875   7 0.982051282
## 2    1.222691e-02 0.987773090 zero Group1 383  264  876   7 0.982051282
## 1279 1.220508e-02 0.987794920 zero Group1 383  263  877   7 0.982051282
## 115  1.203807e-02 0.987961927 zero Group1 383  262  878   7 0.982051282
## 716  1.187599e-02 0.988124009 zero Group1 383  261  879   7 0.982051282
## 1076 1.173043e-02 0.988269570 zero Group1 383  260  880   7 0.982051282
## 1386 1.156757e-02 0.988432433 zero Group1 383  259  881   7 0.982051282
## 1323 1.151736e-02 0.988482637 zero Group1 383  258  882   7 0.982051282
## 917  1.134129e-02 0.988658712 zero Group1 383  257  883   7 0.982051282
## 481  1.123362e-02 0.988766376  one Group1 384  257  883   6 0.984615385
## 1484 1.112090e-02 0.988879099 zero Group1 384  256  884   6 0.984615385
## 7    1.092341e-02 0.989076590 zero Group1 384  255  885   6 0.984615385
## 986  1.088125e-02 0.989118750 zero Group1 384  254  886   6 0.984615385
## 232  1.080997e-02 0.989190035  one Group1 385  254  886   5 0.987179487
## 243  1.073375e-02 0.989266250 zero Group1 385  253  887   5 0.987179487
## 1153 1.042662e-02 0.989573385 zero Group1 385  252  888   5 0.987179487
## 1254 1.040670e-02 0.989593302 zero Group1 385  251  889   5 0.987179487
## 1322 1.035473e-02 0.989645265 zero Group1 385  250  890   5 0.987179487
## 875  1.025246e-02 0.989747543 zero Group1 385  249  891   5 0.987179487
## 363  1.018581e-02 0.989814186 zero Group1 385  248  892   5 0.987179487
## 462  1.017022e-02 0.989829776 zero Group1 385  247  893   5 0.987179487
## 674  1.007512e-02 0.989924876 zero Group1 385  246  894   5 0.987179487
## 1194 9.945631e-03 0.990054369 zero Group1 385  245  895   5 0.987179487
## 981  9.919255e-03 0.990080745 zero Group1 385  244  896   5 0.987179487
## 533  9.866118e-03 0.990133882 zero Group1 385  243  897   5 0.987179487
## 1284 9.748871e-03 0.990251129 zero Group1 385  242  898   5 0.987179487
## 1061 9.709792e-03 0.990290208 zero Group1 385  241  899   5 0.987179487
## 753  9.667610e-03 0.990332390 zero Group1 385  240  900   5 0.987179487
## 1016 9.631228e-03 0.990368772 zero Group1 385  239  901   5 0.987179487
## 1116 9.546595e-03 0.990453405 zero Group1 385  238  902   5 0.987179487
## 1270 9.394303e-03 0.990605697 zero Group1 385  237  903   5 0.987179487
## 342  9.329186e-03 0.990670814 zero Group1 385  236  904   5 0.987179487
## 1147 9.315750e-03 0.990684250 zero Group1 385  235  905   5 0.987179487
## 358  9.186560e-03 0.990813440 zero Group1 385  234  906   5 0.987179487
## 424  9.175495e-03 0.990824505 zero Group1 385  233  907   5 0.987179487
## 1478 9.128346e-03 0.990871654 zero Group1 385  232  908   5 0.987179487
## 595  9.116832e-03 0.990883168 zero Group1 385  231  909   5 0.987179487
## 1181 8.941048e-03 0.991058952 zero Group1 385  230  910   5 0.987179487
## 534  8.897951e-03 0.991102049 zero Group1 385  229  911   5 0.987179487
## 1119 8.779134e-03 0.991220866 zero Group1 385  228  912   5 0.987179487
## 236  8.764474e-03 0.991235526 zero Group1 385  227  913   5 0.987179487
## 347  8.718045e-03 0.991281955 zero Group1 385  226  914   5 0.987179487
## 769  8.713670e-03 0.991286330 zero Group1 385  225  915   5 0.987179487
## 1517 8.600711e-03 0.991399289 zero Group1 385  224  916   5 0.987179487
## 1077 8.591592e-03 0.991408408 zero Group1 385  223  917   5 0.987179487
## 637  8.530962e-03 0.991469038 zero Group1 385  222  918   5 0.987179487
## 467  8.528458e-03 0.991471542 zero Group1 385  221  919   5 0.987179487
## 466  8.412997e-03 0.991587003 zero Group1 385  220  920   5 0.987179487
## 406  8.373681e-03 0.991626319 zero Group1 385  219  921   5 0.987179487
## 904  8.225491e-03 0.991774509 zero Group1 385  218  922   5 0.987179487
## 998  8.144434e-03 0.991855566 zero Group1 385  217  923   5 0.987179487
## 1492 8.126815e-03 0.991873185 zero Group1 385  216  924   5 0.987179487
## 900  7.901892e-03 0.992098108 zero Group1 385  215  925   5 0.987179487
## 878  7.869127e-03 0.992130873 zero Group1 385  214  926   5 0.987179487
## 352  7.818651e-03 0.992181349 zero Group1 385  213  927   5 0.987179487
## 1000 7.632636e-03 0.992367364 zero Group1 385  212  928   5 0.987179487
## 354  7.613277e-03 0.992386723  one Group1 386  212  928   4 0.989743590
## 1133 7.593724e-03 0.992406276 zero Group1 386  211  929   4 0.989743590
## 1081 7.582869e-03 0.992417131 zero Group1 386  210  930   4 0.989743590
## 1399 7.476033e-03 0.992523967 zero Group1 386  209  931   4 0.989743590
## 893  7.457773e-03 0.992542227 zero Group1 386  208  932   4 0.989743590
## 339  7.380270e-03 0.992619730 zero Group1 386  207  933   4 0.989743590
## 942  7.362838e-03 0.992637162 zero Group1 386  206  934   4 0.989743590
## 1186 7.348773e-03 0.992651227 zero Group1 386  205  935   4 0.989743590
## 877  7.320831e-03 0.992679169 zero Group1 386  204  936   4 0.989743590
## 1070 7.248613e-03 0.992751387 zero Group1 386  203  937   4 0.989743590
## 656  7.239506e-03 0.992760494 zero Group1 386  202  938   4 0.989743590
## 1509 7.182313e-03 0.992817687 zero Group1 386  201  939   4 0.989743590
## 310  7.121658e-03 0.992878342 zero Group1 386  200  940   4 0.989743590
## 71   7.109981e-03 0.992890019 zero Group1 386  199  941   4 0.989743590
## 881  7.092784e-03 0.992907216 zero Group1 386  198  942   4 0.989743590
## 1430 7.058406e-03 0.992941594 zero Group1 386  197  943   4 0.989743590
## 855  7.048013e-03 0.992951987 zero Group1 386  196  944   4 0.989743590
## 936  7.038163e-03 0.992961837 zero Group1 386  195  945   4 0.989743590
## 1260 6.935406e-03 0.993064594 zero Group1 386  194  946   4 0.989743590
## 25   6.681319e-03 0.993318681 zero Group1 386  193  947   4 0.989743590
## 704  6.472030e-03 0.993527970 zero Group1 386  192  948   4 0.989743590
## 386  6.470374e-03 0.993529626 zero Group1 386  191  949   4 0.989743590
## 410  6.371185e-03 0.993628815 zero Group1 386  190  950   4 0.989743590
## 1180 6.349506e-03 0.993650494 zero Group1 386  189  951   4 0.989743590
## 1103 6.167539e-03 0.993832461 zero Group1 386  188  952   4 0.989743590
## 747  6.166800e-03 0.993833200 zero Group1 386  187  953   4 0.989743590
## 1374 6.062930e-03 0.993937070 zero Group1 386  186  954   4 0.989743590
## 1382 6.048488e-03 0.993951512 zero Group1 386  185  955   4 0.989743590
## 341  5.983259e-03 0.994016741 zero Group1 386  184  956   4 0.989743590
## 480  5.983199e-03 0.994016801  one Group1 387  184  956   3 0.992307692
## 374  5.969919e-03 0.994030081 zero Group1 387  183  957   3 0.992307692
## 1200 5.968026e-03 0.994031974 zero Group1 387  182  958   3 0.992307692
## 752  5.932450e-03 0.994067550 zero Group1 387  181  959   3 0.992307692
## 834  5.927893e-03 0.994072107 zero Group1 387  180  960   3 0.992307692
## 962  5.927137e-03 0.994072863 zero Group1 387  179  961   3 0.992307692
## 471  5.902957e-03 0.994097043 zero Group1 387  178  962   3 0.992307692
## 1273 5.855723e-03 0.994144277 zero Group1 387  177  963   3 0.992307692
## 570  5.850889e-03 0.994149111 zero Group1 387  176  964   3 0.992307692
## 1283 5.843605e-03 0.994156395 zero Group1 387  175  965   3 0.992307692
## 450  5.838206e-03 0.994161794 zero Group1 387  174  966   3 0.992307692
## 1256 5.801993e-03 0.994198007 zero Group1 387  173  967   3 0.992307692
## 1493 5.786185e-03 0.994213815 zero Group1 387  172  968   3 0.992307692
## 654  5.746053e-03 0.994253947 zero Group1 387  171  969   3 0.992307692
## 385  5.737995e-03 0.994262005 zero Group1 387  170  970   3 0.992307692
## 414  5.684384e-03 0.994315616 zero Group1 387  169  971   3 0.992307692
## 978  5.682689e-03 0.994317311 zero Group1 387  168  972   3 0.992307692
## 756  5.581928e-03 0.994418072 zero Group1 387  167  973   3 0.992307692
## 1528 5.557180e-03 0.994442820 zero Group1 387  166  974   3 0.992307692
## 702  5.495549e-03 0.994504451 zero Group1 387  165  975   3 0.992307692
## 839  5.463572e-03 0.994536428 zero Group1 387  164  976   3 0.992307692
## 694  5.416411e-03 0.994583589 zero Group1 387  163  977   3 0.992307692
## 176  5.338253e-03 0.994661747 zero Group1 387  162  978   3 0.992307692
## 1276 5.290716e-03 0.994709284 zero Group1 387  161  979   3 0.992307692
## 1265 5.284884e-03 0.994715116 zero Group1 387  160  980   3 0.992307692
## 796  5.264964e-03 0.994735036 zero Group1 387  159  981   3 0.992307692
## 614  5.168545e-03 0.994831455 zero Group1 387  158  982   3 0.992307692
## 1320 5.139977e-03 0.994860023 zero Group1 387  157  983   3 0.992307692
## 1188 5.094076e-03 0.994905924 zero Group1 387  156  984   3 0.992307692
## 1262 5.091473e-03 0.994908527 zero Group1 387  155  985   3 0.992307692
## 96   5.027717e-03 0.994972283 zero Group1 387  154  986   3 0.992307692
## 707  4.971446e-03 0.995028554 zero Group1 387  153  987   3 0.992307692
## 455  4.970759e-03 0.995029241 zero Group1 387  152  988   3 0.992307692
## 1408 4.858766e-03 0.995141234 zero Group1 387  151  989   3 0.992307692
## 198  4.732581e-03 0.995267419 zero Group1 387  150  990   3 0.992307692
## 389  4.716059e-03 0.995283941 zero Group1 387  149  991   3 0.992307692
## 916  4.631593e-03 0.995368407 zero Group1 387  148  992   3 0.992307692
## 513  4.627337e-03 0.995372663 zero Group1 387  147  993   3 0.992307692
## 911  4.601331e-03 0.995398669 zero Group1 387  146  994   3 0.992307692
## 646  4.530860e-03 0.995469140 zero Group1 387  145  995   3 0.992307692
## 215  4.489452e-03 0.995510548 zero Group1 387  144  996   3 0.992307692
## 1519 4.421782e-03 0.995578218 zero Group1 387  143  997   3 0.992307692
## 961  4.387397e-03 0.995612603 zero Group1 387  142  998   3 0.992307692
## 1302 4.336344e-03 0.995663656 zero Group1 387  141  999   3 0.992307692
## 110  4.267849e-03 0.995732151 zero Group1 387  140 1000   3 0.992307692
## 1152 4.266196e-03 0.995733804 zero Group1 387  139 1001   3 0.992307692
## 1449 4.210263e-03 0.995789737 zero Group1 387  138 1002   3 0.992307692
## 84   4.199056e-03 0.995800944 zero Group1 387  137 1003   3 0.992307692
## 795  4.185377e-03 0.995814623 zero Group1 387  136 1004   3 0.992307692
## 1242 4.169708e-03 0.995830292 zero Group1 387  135 1005   3 0.992307692
## 1222 4.142296e-03 0.995857704 zero Group1 387  134 1006   3 0.992307692
## 350  4.105577e-03 0.995894423 zero Group1 387  133 1007   3 0.992307692
## 1143 4.100663e-03 0.995899337 zero Group1 387  132 1008   3 0.992307692
## 197  4.076965e-03 0.995923035 zero Group1 387  131 1009   3 0.992307692
## 1383 4.074356e-03 0.995925644 zero Group1 387  130 1010   3 0.992307692
## 1227 4.043606e-03 0.995956394 zero Group1 387  128 1012   3 0.992307692
## 1231 4.043606e-03 0.995956394 zero Group1 387  128 1012   3 0.992307692
## 6    4.024219e-03 0.995975781 zero Group1 387  127 1013   3 0.992307692
## 1243 3.993207e-03 0.996006793 zero Group1 387  126 1014   3 0.992307692
## 53   3.978281e-03 0.996021719 zero Group1 387  125 1015   3 0.992307692
## 957  3.931309e-03 0.996068691 zero Group1 387  124 1016   3 0.992307692
## 1312 3.879682e-03 0.996120318 zero Group1 387  123 1017   3 0.992307692
## 19   3.754454e-03 0.996245546 zero Group1 387  122 1018   3 0.992307692
## 744  3.642729e-03 0.996357271 zero Group1 387  121 1019   3 0.992307692
## 1082 3.618490e-03 0.996381510 zero Group1 387  120 1020   3 0.992307692
## 330  3.547098e-03 0.996452902 zero Group1 387  119 1021   3 0.992307692
## 923  3.543779e-03 0.996456221  one Group1 388  119 1021   2 0.994871795
## 278  3.482133e-03 0.996517867 zero Group1 388  118 1022   2 0.994871795
## 1384 3.404461e-03 0.996595539 zero Group1 388  117 1023   2 0.994871795
## 1441 3.390956e-03 0.996609044 zero Group1 388  116 1024   2 0.994871795
## 1433 3.363833e-03 0.996636167 zero Group1 388  115 1025   2 0.994871795
## 872  3.340414e-03 0.996659586 zero Group1 388  114 1026   2 0.994871795
## 449  3.311294e-03 0.996688706 zero Group1 388  113 1027   2 0.994871795
## 409  3.258470e-03 0.996741530 zero Group1 388  112 1028   2 0.994871795
## 912  3.256912e-03 0.996743088 zero Group1 388  111 1029   2 0.994871795
## 554  3.224179e-03 0.996775821 zero Group1 388  110 1030   2 0.994871795
## 201  3.189225e-03 0.996810775 zero Group1 388  109 1031   2 0.994871795
## 669  3.135258e-03 0.996864742 zero Group1 388  108 1032   2 0.994871795
## 919  3.128648e-03 0.996871352 zero Group1 388  107 1033   2 0.994871795
## 1409 3.069998e-03 0.996930002 zero Group1 388  106 1034   2 0.994871795
## 475  3.060453e-03 0.996939547 zero Group1 388  105 1035   2 0.994871795
## 1436 3.039413e-03 0.996960587 zero Group1 388  104 1036   2 0.994871795
## 334  2.887020e-03 0.997112980 zero Group1 388  103 1037   2 0.994871795
## 840  2.875842e-03 0.997124158 zero Group1 388  102 1038   2 0.994871795
## 316  2.832390e-03 0.997167610 zero Group1 388  101 1039   2 0.994871795
## 1195 2.796901e-03 0.997203099 zero Group1 388  100 1040   2 0.994871795
## 585  2.718042e-03 0.997281958 zero Group1 388   99 1041   2 0.994871795
## 1126 2.712831e-03 0.997287169  one Group1 389   99 1041   1 0.997435897
## 1426 2.656014e-03 0.997343986 zero Group1 389   98 1042   1 0.997435897
## 1377 2.621962e-03 0.997378038 zero Group1 389   97 1043   1 0.997435897
## 1010 2.589639e-03 0.997410361 zero Group1 389   96 1044   1 0.997435897
## 1098 2.477148e-03 0.997522852 zero Group1 389   95 1045   1 0.997435897
## 766  2.431171e-03 0.997568829 zero Group1 389   94 1046   1 0.997435897
## 1527 2.431082e-03 0.997568918 zero Group1 389   93 1047   1 0.997435897
## 26   2.397583e-03 0.997602417 zero Group1 389   92 1048   1 0.997435897
## 838  2.370944e-03 0.997629056 zero Group1 389   91 1049   1 0.997435897
## 1440 2.338222e-03 0.997661778 zero Group1 389   90 1050   1 0.997435897
## 1102 2.334051e-03 0.997665949 zero Group1 389   89 1051   1 0.997435897
## 492  2.321895e-03 0.997678105 zero Group1 389   88 1052   1 0.997435897
## 1512 2.212919e-03 0.997787081 zero Group1 389   87 1053   1 0.997435897
## 854  2.192503e-03 0.997807497 zero Group1 389   86 1054   1 0.997435897
## 1043 2.152745e-03 0.997847255 zero Group1 389   85 1055   1 0.997435897
## 340  2.143689e-03 0.997856311 zero Group1 389   84 1056   1 0.997435897
## 910  2.102258e-03 0.997897742 zero Group1 389   83 1057   1 0.997435897
## 678  2.075977e-03 0.997924023 zero Group1 389   82 1058   1 0.997435897
## 1387 2.062675e-03 0.997937325 zero Group1 389   81 1059   1 0.997435897
## 1315 2.023869e-03 0.997976131 zero Group1 389   80 1060   1 0.997435897
## 78   1.954542e-03 0.998045458 zero Group1 389   79 1061   1 0.997435897
## 1359 1.848623e-03 0.998151377 zero Group1 389   78 1062   1 0.997435897
## 11   1.683136e-03 0.998316864 zero Group1 389   77 1063   1 0.997435897
## 1040 1.680480e-03 0.998319520 zero Group1 389   76 1064   1 0.997435897
## 1515 1.637221e-03 0.998362779 zero Group1 389   75 1065   1 0.997435897
## 832  1.625486e-03 0.998374514 zero Group1 389   74 1066   1 0.997435897
## 550  1.604077e-03 0.998395923 zero Group1 389   73 1067   1 0.997435897
## 83   1.603500e-03 0.998396500 zero Group1 389   72 1068   1 0.997435897
## 918  1.597748e-03 0.998402252 zero Group1 389   71 1069   1 0.997435897
## 590  1.569522e-03 0.998430478 zero Group1 389   70 1070   1 0.997435897
## 1039 1.535568e-03 0.998464432 zero Group1 389   69 1071   1 0.997435897
## 1507 1.429376e-03 0.998570624 zero Group1 389   68 1072   1 0.997435897
## 1165 1.421944e-03 0.998578056 zero Group1 389   67 1073   1 0.997435897
## 1166 1.414114e-03 0.998585886 zero Group1 389   66 1074   1 0.997435897
## 531  1.392764e-03 0.998607236 zero Group1 389   65 1075   1 0.997435897
## 515  1.384441e-03 0.998615559 zero Group1 389   64 1076   1 0.997435897
## 1074 1.344938e-03 0.998655062 zero Group1 389   63 1077   1 0.997435897
## 279  1.258159e-03 0.998741841 zero Group1 389   62 1078   1 0.997435897
## 1100 1.117543e-03 0.998882457 zero Group1 389   61 1079   1 0.997435897
## 582  1.108399e-03 0.998891601 zero Group1 389   60 1080   1 0.997435897
## 1438 1.103976e-03 0.998896024 zero Group1 389   59 1081   1 0.997435897
## 1431 1.071262e-03 0.998928738 zero Group1 389   58 1082   1 0.997435897
## 1146 1.040568e-03 0.998959432 zero Group1 389   57 1083   1 0.997435897
## 1234 1.028612e-03 0.998971388 zero Group1 389   56 1084   1 0.997435897
## 1385 1.027873e-03 0.998972127 zero Group1 389   55 1085   1 0.997435897
## 555  9.954314e-04 0.999004569 zero Group1 389   54 1086   1 0.997435897
## 714  9.892983e-04 0.999010702 zero Group1 389   53 1087   1 0.997435897
## 1446 9.613686e-04 0.999038631 zero Group1 389   52 1088   1 0.997435897
## 384  9.446177e-04 0.999055382 zero Group1 389   51 1089   1 0.997435897
## 676  9.198862e-04 0.999080114 zero Group1 389   50 1090   1 0.997435897
## 1523 8.888278e-04 0.999111172 zero Group1 389   49 1091   1 0.997435897
## 624  8.880351e-04 0.999111965 zero Group1 389   48 1092   1 0.997435897
## 1343 8.794512e-04 0.999120549 zero Group1 389   47 1093   1 0.997435897
## 271  8.641750e-04 0.999135825 zero Group1 389   46 1094   1 0.997435897
## 748  8.605348e-04 0.999139465 zero Group1 389   45 1095   1 0.997435897
## 980  8.278811e-04 0.999172119 zero Group1 389   44 1096   1 0.997435897
## 1404 8.047321e-04 0.999195268 zero Group1 389   43 1097   1 0.997435897
## 733  8.030848e-04 0.999196915 zero Group1 389   42 1098   1 0.997435897
## 673  7.949421e-04 0.999205058 zero Group1 389   41 1099   1 0.997435897
## 667  7.760715e-04 0.999223929 zero Group1 389   40 1100   1 0.997435897
## 346  7.476385e-04 0.999252361 zero Group1 389   39 1101   1 0.997435897
## 1366 7.437270e-04 0.999256273 zero Group1 389   38 1102   1 0.997435897
## 1443 7.079587e-04 0.999292041 zero Group1 389   37 1103   1 0.997435897
## 332  7.043090e-04 0.999295691 zero Group1 389   36 1104   1 0.997435897
## 1206 7.019336e-04 0.999298066  one Group1 390   36 1104   0 1.000000000
## 1196 6.807719e-04 0.999319228 zero Group1 390   35 1105   0 1.000000000
## 594  6.805161e-04 0.999319484 zero Group1 390   34 1106   0 1.000000000
## 521  6.789736e-04 0.999321026 zero Group1 390   33 1107   0 1.000000000
## 551  6.730905e-04 0.999326910 zero Group1 390   32 1108   0 1.000000000
## 1183 6.627237e-04 0.999337276 zero Group1 390   31 1109   0 1.000000000
## 1080 6.535333e-04 0.999346467 zero Group1 390   30 1110   0 1.000000000
## 648  6.524436e-04 0.999347556 zero Group1 390   29 1111   0 1.000000000
## 885  6.397890e-04 0.999360211 zero Group1 390   28 1112   0 1.000000000
## 1121 6.365397e-04 0.999363460 zero Group1 390   27 1113   0 1.000000000
## 1324 6.179396e-04 0.999382060 zero Group1 390   26 1114   0 1.000000000
## 593  5.819635e-04 0.999418036 zero Group1 390   25 1115   0 1.000000000
## 915  5.563362e-04 0.999443664 zero Group1 390   24 1116   0 1.000000000
## 1021 5.521665e-04 0.999447834 zero Group1 390   23 1117   0 1.000000000
## 1405 5.319871e-04 0.999468013 zero Group1 390   22 1118   0 1.000000000
## 611  5.073829e-04 0.999492617 zero Group1 390   21 1119   0 1.000000000
## 777  4.916623e-04 0.999508338 zero Group1 390   20 1120   0 1.000000000
## 408  4.819462e-04 0.999518054 zero Group1 390   19 1121   0 1.000000000
## 1346 4.461767e-04 0.999553823 zero Group1 390   18 1122   0 1.000000000
## 1286 4.304810e-04 0.999569519 zero Group1 390   17 1123   0 1.000000000
## 302  4.193190e-04 0.999580681 zero Group1 390   16 1124   0 1.000000000
## 1163 3.819785e-04 0.999618022 zero Group1 390   15 1125   0 1.000000000
## 631  3.594012e-04 0.999640599 zero Group1 390   14 1126   0 1.000000000
## 871  3.554513e-04 0.999644549 zero Group1 390   13 1127   0 1.000000000
## 351  3.509441e-04 0.999649056 zero Group1 390   12 1128   0 1.000000000
## 1023 3.467671e-04 0.999653233 zero Group1 390   11 1129   0 1.000000000
## 619  3.211342e-04 0.999678866 zero Group1 390   10 1130   0 1.000000000
## 1347 2.716431e-04 0.999728357 zero Group1 390    9 1131   0 1.000000000
## 1357 2.529120e-04 0.999747088 zero Group1 390    8 1132   0 1.000000000
## 1363 2.415334e-04 0.999758467 zero Group1 390    7 1133   0 1.000000000
## 677  2.375401e-04 0.999762460 zero Group1 390    6 1134   0 1.000000000
## 345  2.069125e-04 0.999793087 zero Group1 390    5 1135   0 1.000000000
## 572  1.710218e-04 0.999828978 zero Group1 390    4 1136   0 1.000000000
## 1445 1.603482e-04 0.999839652 zero Group1 390    3 1137   0 1.000000000
## 1529 1.573918e-04 0.999842608 zero Group1 390    2 1138   0 1.000000000
## 857  1.325056e-04 0.999867494 zero Group1 390    1 1139   0 1.000000000
## 1120 9.428622e-05 0.999905714 zero Group1 390    0 1140   0 1.000000000
##             SPEC Informedness      PREC       NPV       MARK          F1
## 825  0.999122807 -0.000877193 0.0000000 0.7449313 -0.2550687 0.000000000
## 1332 0.999122807  0.001686910 0.5000000 0.7454188  0.2454188 0.005102041
## 972  0.999122807  0.004251012 0.6666667 0.7459070  0.4125737 0.010178117
## 167  0.999122807  0.006815115 0.7500000 0.7463958  0.4963958 0.015228426
## 1456 0.999122807  0.009379217 0.8000000 0.7468852  0.5468852 0.020253165
## 114  0.999122807  0.011943320 0.8333333 0.7473753  0.5807087 0.025252525
## 20   0.999122807  0.014507422 0.8571429 0.7478661  0.6050089 0.030226700
## 1003 0.999122807  0.017071525 0.8750000 0.7483574  0.6233574 0.035175879
## 445  0.999122807  0.019635628 0.8888889 0.7488494  0.6377383 0.040100251
## 1092 0.999122807  0.022199730 0.9000000 0.7493421  0.6493421 0.045000000
## 557  0.999122807  0.024763833 0.9090909 0.7498354  0.6589263 0.049875312
## 932  0.999122807  0.027327935 0.9166667 0.7503294  0.6669960 0.054726368
## 281  0.999122807  0.029892038 0.9230769 0.7508240  0.6739009 0.059553350
## 1458 0.999122807  0.032456140 0.9285714 0.7513193  0.6798907 0.064356436
## 27   0.999122807  0.035020243 0.9333333 0.7518152  0.6851485 0.069135802
## 360  0.998245614  0.034143050 0.8750000 0.7516513  0.6266513 0.068965517
## 1217 0.998245614  0.036707152 0.8823529 0.7521481  0.6345010 0.073710074
## 5    0.998245614  0.039271255 0.8888889 0.7526455  0.6415344 0.078431373
## 111  0.998245614  0.041835358 0.8947368 0.7531436  0.6478805 0.083129584
## 1416 0.998245614  0.044399460 0.9000000 0.7536424  0.6536424 0.087804878
## 295  0.998245614  0.046963563 0.9047619 0.7541418  0.6589037 0.092457421
## 1411 0.998245614  0.049527665 0.9090909 0.7546419  0.6637328 0.097087379
## 845  0.998245614  0.052091768 0.9130435 0.7551427  0.6681861 0.101694915
## 34   0.998245614  0.054655870 0.9166667 0.7556441  0.6723108 0.106280193
## 849  0.998245614  0.057219973 0.9200000 0.7561462  0.6761462 0.110843373
## 1067 0.997368421  0.056342780 0.8846154 0.7559840  0.6405994 0.110576923
## 206  0.997368421  0.058906883 0.8888889 0.7564870  0.6453759 0.115107914
## 1415 0.997368421  0.061470985 0.8928571 0.7569907  0.6498478 0.119617225
## 132  0.997368421  0.064035088 0.8965517 0.7574950  0.6540467 0.124105012
## 439  0.997368421  0.066599190 0.9000000 0.7580000  0.6580000 0.128571429
## 1170 0.997368421  0.069163293 0.9032258 0.7585057  0.6617315 0.133016627
## 297  0.997368421  0.071727395 0.9062500 0.7590120  0.6652620 0.137440758
## 1420 0.997368421  0.074291498 0.9090909 0.7595190  0.6686099 0.141843972
## 688  0.997368421  0.076855601 0.9117647 0.7600267  0.6717914 0.146226415
## 249  0.997368421  0.079419703 0.9142857 0.7605351  0.6748208 0.150588235
## 442  0.997368421  0.081983806 0.9166667 0.7610442  0.6777108 0.154929577
## 1490 0.997368421  0.084547908 0.9189189 0.7615539  0.6804728 0.159250585
## 211  0.997368421  0.087112011 0.9210526 0.7620643  0.6831170 0.163551402
## 686  0.997368421  0.089676113 0.9230769 0.7625755  0.6856524 0.167832168
## 968  0.997368421  0.092240216 0.9250000 0.7630872  0.6880872 0.172093023
## 1369 0.997368421  0.094804318 0.9268293 0.7635997  0.6904290 0.176334107
## 91   0.997368421  0.097368421 0.9285714 0.7641129  0.6926843 0.180555556
## 1047 0.997368421  0.099932524 0.9302326 0.7646268  0.6948593 0.184757506
## 104  0.997368421  0.102496626 0.9318182 0.7651413  0.6969595 0.188940092
## 782  0.996491228  0.101619433 0.9111111 0.7649832  0.6760943 0.188505747
## 565  0.996491228  0.104183536 0.9130435 0.7654987  0.6785421 0.192660550
## 1090 0.996491228  0.106747638 0.9148936 0.7660148  0.6809085 0.196796339
## 99   0.996491228  0.109311741 0.9166667 0.7665317  0.6831984 0.200913242
## 1451 0.996491228  0.111875843 0.9183673 0.7670493  0.6854166 0.205011390
## 801  0.996491228  0.114439946 0.9200000 0.7675676  0.6875676 0.209090909
## 487  0.996491228  0.117004049 0.9215686 0.7680865  0.6896552 0.213151927
## 620  0.995614035  0.116126856 0.9038462 0.7679296  0.6717758 0.212669683
## 306  0.995614035  0.118690958 0.9056604 0.7684496  0.6741099 0.216704289
## 1168 0.995614035  0.121255061 0.9074074 0.7689702  0.6763776 0.220720721
## 903  0.994736842  0.120377868 0.8909091 0.7688136  0.6597227 0.220224719
## 729  0.994736842  0.122941970 0.8928571 0.7693351  0.6621923 0.224215247
## 282  0.993859649  0.122064777 0.8771930 0.7691785  0.6463715 0.223713647
## 299  0.993859649  0.124628880 0.8793103 0.7697011  0.6490114 0.227678571
## 1414 0.993859649  0.127192982 0.8813559 0.7702243  0.6515803 0.231625835
## 276  0.992982456  0.126315789 0.8666667 0.7700680  0.6367347 0.231111111
## 265  0.992982456  0.128879892 0.8688525 0.7705922  0.6394447 0.235033259
## 1339 0.992982456  0.131443995 0.8709677 0.7711172  0.6420849 0.238938053
## 1335 0.992982456  0.134008097 0.8730159 0.7716428  0.6446587 0.242825607
## 75   0.992982456  0.136572200 0.8750000 0.7721692  0.6471692 0.246696035
## 152  0.992982456  0.139136302 0.8769231 0.7726962  0.6496193 0.250549451
## 1089 0.992982456  0.141700405 0.8787879 0.7732240  0.6520119 0.254385965
## 811  0.992982456  0.144264507 0.8805970 0.7737526  0.6543496 0.258205689
## 926  0.992982456  0.146828610 0.8823529 0.7742818  0.6566347 0.262008734
## 1049 0.992982456  0.149392713 0.8840580 0.7748118  0.6588697 0.265795207
## 444  0.992982456  0.151956815 0.8857143 0.7753425  0.6610568 0.269565217
## 1099 0.992105263  0.151079622 0.8732394 0.7751885  0.6484279 0.268980477
## 66   0.992105263  0.153643725 0.8750000 0.7757202  0.6507202 0.272727273
## 216  0.992105263  0.156207827 0.8767123 0.7762526  0.6529649 0.276457883
## 438  0.992105263  0.158771930 0.8783784 0.7767857  0.6551641 0.280172414
## 14   0.992105263  0.161336032 0.8800000 0.7773196  0.6573196 0.283870968
## 1051 0.992105263  0.163900135 0.8815789 0.7778542  0.6594331 0.287553648
## 1291 0.992105263  0.166464238 0.8831169 0.7783895  0.6615064 0.291220557
## 109  0.992105263  0.169028340 0.8846154 0.7789256  0.6635410 0.294871795
## 62   0.992105263  0.171592443 0.8860759 0.7794624  0.6655384 0.298507463
## 605  0.992105263  0.174156545 0.8875000 0.7800000  0.6675000 0.302127660
## 80   0.992105263  0.176720648 0.8888889 0.7805383  0.6694272 0.305732484
## 1093 0.992105263  0.179284750 0.8902439 0.7810773  0.6713213 0.309322034
## 1055 0.992105263  0.181848853 0.8915663 0.7816171  0.6731834 0.312896406
## 221  0.992105263  0.184412955 0.8928571 0.7821577  0.6750148 0.316455696
## 213  0.992105263  0.186977058 0.8941176 0.7826990  0.6768166 0.320000000
## 1337 0.992105263  0.189541161 0.8953488 0.7832410  0.6785898 0.323529412
## 1340 0.992105263  0.192105263 0.8965517 0.7837838  0.6803355 0.327044025
## 1125 0.992105263  0.194669366 0.8977273 0.7843273  0.6820546 0.330543933
## 598  0.992105263  0.197233468 0.8988764 0.7848716  0.6837480 0.334029228
## 683  0.992105263  0.199797571 0.9000000 0.7854167  0.6854167 0.337500000
## 175  0.992105263  0.202361673 0.9010989 0.7859625  0.6870614 0.340956341
## 809  0.992105263  0.204925776 0.9021739 0.7865090  0.6886830 0.344398340
## 235  0.992105263  0.207489879 0.9032258 0.7870564  0.6902822 0.347826087
## 806  0.992105263  0.210053981 0.9042553 0.7876045  0.6918598 0.351239669
## 1253 0.991228070  0.209176788 0.8947368 0.7874564  0.6821933 0.350515464
## 1006 0.991228070  0.211740891 0.8958333 0.7880056  0.6838389 0.353909465
## 928  0.991228070  0.214304993 0.8969072 0.7885555  0.6854627 0.357289528
## 1370 0.991228070  0.216869096 0.8979592 0.7891061  0.6870653 0.360655738
## 500  0.990350877  0.215991903 0.8888889 0.7889588  0.6778477 0.359918200
## 1212 0.990350877  0.218556005 0.8900000 0.7895105  0.6795105 0.363265306
## 97   0.990350877  0.221120108 0.8910891 0.7900630  0.6811521 0.366598778
## 720  0.990350877  0.223684211 0.8921569 0.7906162  0.6827731 0.369918699
## 159  0.990350877  0.226248313 0.8932039 0.7911703  0.6843742 0.373225152
## 52   0.990350877  0.228812416 0.8942308 0.7917251  0.6859559 0.376518219
## 727  0.990350877  0.231376518 0.8952381 0.7922807  0.6875188 0.379797980
## 479  0.990350877  0.233940621 0.8962264 0.7928371  0.6890635 0.383064516
## 285  0.990350877  0.236504723 0.8971963 0.7933942  0.6905905 0.386317907
## 217  0.990350877  0.239068826 0.8981481 0.7939522  0.6921003 0.389558233
## 395  0.990350877  0.241632928 0.8990826 0.7945109  0.6935935 0.392785571
## 353  0.990350877  0.244197031 0.9000000 0.7950704  0.6950704 0.396000000
## 830  0.989473684  0.243319838 0.8918919 0.7949260  0.6868179 0.395209581
## 51   0.989473684  0.245883941 0.8928571 0.7954866  0.6883437 0.398406375
## 966  0.989473684  0.248448043 0.8938053 0.7960480  0.6898533 0.401590457
## 313  0.989473684  0.251012146 0.8947368 0.7966102  0.6913470 0.404761905
## 705  0.988596491  0.250134953 0.8869565 0.7964664  0.6834230 0.403960396
## 606  0.988596491  0.252699055 0.8879310 0.7970297  0.6849607 0.407114625
## 1413 0.988596491  0.255263158 0.8888889 0.7975938  0.6864827 0.410256410
## 283  0.988596491  0.257827260 0.8898305 0.7981586  0.6879891 0.413385827
## 138  0.988596491  0.260391363 0.8907563 0.7987243  0.6894806 0.416502947
## 29   0.988596491  0.262955466 0.8916667 0.7992908  0.6909574 0.419607843
## 725  0.988596491  0.265519568 0.8925620 0.7998581  0.6924200 0.422700587
## 147  0.987719298  0.264642375 0.8852459 0.7997159  0.6849618 0.421875000
## 1247 0.987719298  0.267206478 0.8861789 0.8002843  0.6864632 0.424951267
## 64   0.987719298  0.269770580 0.8870968 0.8008535  0.6879503 0.428015564
## 682  0.987719298  0.272334683 0.8880000 0.8014235  0.6894235 0.431067961
## 241  0.987719298  0.274898785 0.8888889 0.8019943  0.6908832 0.434108527
## 761  0.987719298  0.277462888 0.8897638 0.8025659  0.6923297 0.437137331
## 23   0.987719298  0.282591093 0.8914729 0.8037116  0.6951845 0.443159923
## 148  0.987719298  0.282591093 0.8914729 0.8037116  0.6951845 0.443159923
## 807  0.987719298  0.285155196 0.8923077 0.8042857  0.6965934 0.446153846
## 1269 0.986842105  0.284278003 0.8854962 0.8041458  0.6896420 0.445297505
## 284  0.986842105  0.286842105 0.8863636 0.8047210  0.6910847 0.448275862
## 804  0.986842105  0.289406208 0.8872180 0.8052971  0.6925151 0.451242830
## 1248 0.986842105  0.291970310 0.8880597 0.8058739  0.6939336 0.454198473
## 205  0.985964912  0.291093117 0.8814815 0.8057348  0.6872162 0.453333333
## 204  0.985964912  0.293657220 0.8823529 0.8063128  0.6886657 0.456273764
## 934  0.985964912  0.296221323 0.8832117 0.8068916  0.6901033 0.459203036
## 560  0.985964912  0.298785425 0.8840580 0.8074713  0.6915292 0.462121212
## 301  0.985964912  0.301349528 0.8848921 0.8080518  0.6929438 0.465028355
## 1048 0.985964912  0.303913630 0.8857143 0.8086331  0.6943474 0.467924528
## 1421 0.985964912  0.306477733 0.8865248 0.8092153  0.6957401 0.470809793
## 1464 0.985087719  0.305600540 0.8802817 0.8090778  0.6893595 0.469924812
## 1046 0.985087719  0.308164642 0.8811189 0.8096611  0.6907800 0.472795497
## 563  0.985087719  0.310728745 0.8819444 0.8102453  0.6921898 0.475655431
## 416  0.984210526  0.309851552 0.8758621 0.8101083  0.6859704 0.474766355
## 1097 0.984210526  0.312415655 0.8767123 0.8106936  0.6874060 0.477611940
## 772  0.983333333  0.311538462 0.8707483 0.8105568  0.6813051 0.476722533
## 511  0.982456140  0.310661269 0.8648649 0.8104197  0.6752845 0.475836431
## 210  0.982456140  0.313225371 0.8657718 0.8110065  0.6767783 0.478664193
## 971  0.982456140  0.315789474 0.8666667 0.8115942  0.6782609 0.481481481
## 266  0.981578947  0.314912281 0.8609272 0.8114576  0.6723847 0.480591497
## 193  0.980701754  0.314035088 0.8552632 0.8113208  0.6665839 0.479704797
## 639  0.980701754  0.316599190 0.8562092 0.8119099  0.6681191 0.482504604
## 578  0.979824561  0.315721997 0.8506494 0.8117733  0.6624226 0.481617647
## 57   0.979824561  0.318286100 0.8516129 0.8123636  0.6639765 0.484403670
## 486  0.979824561  0.320850202 0.8525641 0.8129549  0.6655190 0.487179487
## 1388 0.978947368  0.319973009 0.8471338 0.8128186  0.6599524 0.486288848
## 413  0.978070175  0.319095816 0.8417722 0.8126822  0.6544544 0.485401460
## 724  0.978070175  0.321659919 0.8427673 0.8132750  0.6560423 0.488160291
## 1094 0.978070175  0.324224022 0.8437500 0.8138686  0.6576186 0.490909091
## 841  0.978070175  0.326788124 0.8447205 0.8144631  0.6591836 0.493647913
## 1418 0.978070175  0.329352227 0.8456790 0.8150585  0.6607375 0.496376812
## 68   0.978070175  0.331916329 0.8466258 0.8156547  0.6622805 0.499095841
## 803  0.978070175  0.334480432 0.8475610 0.8162518  0.6638128 0.501805054
## 1149 0.977192982  0.333603239 0.8424242 0.8161172  0.6585415 0.500900901
## 738  0.976315789  0.332726046 0.8373494 0.8159824  0.6533318 0.500000000
## 1330 0.976315789  0.335290148 0.8383234 0.8165811  0.6549044 0.502692998
## 1268 0.975438596  0.334412955 0.8333333 0.8164464  0.6497797 0.501792115
## 1156 0.974561404  0.333535762 0.8284024 0.8163115  0.6447139 0.500894454
## 33   0.974561404  0.336099865 0.8294118 0.8169118  0.6463235 0.503571429
## 495  0.973684211  0.335222672 0.8245614 0.8167770  0.6413384 0.502673797
## 760  0.973684211  0.337786775 0.8255814 0.8173785  0.6429599 0.505338078
## 250  0.973684211  0.340350877 0.8265896 0.8179808  0.6445704 0.507992895
## 866  0.972807018  0.339473684 0.8218391 0.8178466  0.6396857 0.507092199
## 755  0.971929825  0.338596491 0.8171429 0.8177122  0.6348550 0.506194690
## 436  0.971929825  0.341160594 0.8181818 0.8183161  0.6364979 0.508833922
## 161  0.971929825  0.343724696 0.8192090 0.8189209  0.6381300 0.511463845
## 793  0.971052632  0.342847503 0.8146067 0.8187870  0.6333937 0.510563380
## 876  0.970175439  0.341970310 0.8100559 0.8186528  0.6287087 0.509666081
## 884  0.970175439  0.344534413 0.8111111 0.8192593  0.6303704 0.512280702
## 661  0.969298246  0.343657220 0.8066298 0.8191253  0.6257551 0.511383538
## 304  0.969298246  0.346221323 0.8076923 0.8197329  0.6274252 0.513986014
## 1314 0.968421053  0.345344130 0.8032787 0.8195991  0.6228778 0.513089005
## 668  0.967543860  0.344466937 0.7989130 0.8194651  0.6183781 0.512195122
## 329  0.966666667  0.343589744 0.7945946 0.8193309  0.6139254 0.511304348
## 482  0.966666667  0.346153846 0.7956989 0.8199405  0.6156394 0.513888889
## 324  0.965789474  0.345276653 0.7914439 0.8198064  0.6112503 0.512998267
## 1174 0.965789474  0.347840756 0.7925532 0.8204173  0.6129705 0.515570934
## 1376 0.964912281  0.346963563 0.7883598 0.8202834  0.6086432 0.514680484
## 440  0.964912281  0.349527665 0.7894737 0.8208955  0.6103692 0.517241379
## 400  0.964912281  0.352091768 0.7905759 0.8215086  0.6120845 0.519793460
## 465  0.964035088  0.351214575 0.7864583 0.8213752  0.6078335 0.518900344
## 1297 0.964035088  0.353778677 0.7875648 0.8219895  0.6095543 0.521440823
## 452  0.963157895  0.352901484 0.7835052 0.8218563  0.6053614 0.520547945
## 296  0.963157895  0.355465587 0.7846154 0.8224719  0.6070873 0.523076923
## 538  0.962280702  0.354588394 0.7806122 0.8223388  0.6029511 0.522184300
## 225  0.962280702  0.357152497 0.7817259 0.8229557  0.6046816 0.524701874
## 1338 0.962280702  0.359716599 0.7828283 0.8235736  0.6064019 0.527210884
## 721  0.962280702  0.362280702 0.7839196 0.8241923  0.6081119 0.529711375
## 1505 0.961403509  0.361403509 0.7800000 0.8240602  0.6040602 0.528813559
## 1177 0.961403509  0.363967611 0.7810945 0.8246802  0.6057747 0.531302876
## 566  0.961403509  0.366531714 0.7821782 0.8253012  0.6074794 0.533783784
## 983  0.960526316  0.365654521 0.7783251 0.8251696  0.6034947 0.532883642
## 1172 0.960526316  0.368218623 0.7794118 0.8257919  0.6052036 0.535353535
## 1311 0.959649123  0.367341430 0.7756098 0.8256604  0.6012701 0.534453782
## 228  0.959649123  0.369905533 0.7766990 0.8262840  0.6029830 0.536912752
## 996  0.958771930  0.369028340 0.7729469 0.8261527  0.5990995 0.536013400
## 196  0.958771930  0.371592443 0.7740385 0.8267776  0.6008161 0.538461538
## 644  0.957894737  0.370715250 0.7703349 0.8266465  0.5969814 0.537562604
## 224  0.957017544  0.369838057 0.7666667 0.8265152  0.5931818 0.536666667
## 1319 0.956140351  0.368960864 0.7630332 0.8263836  0.5894168 0.535773710
## 621  0.955263158  0.368083671 0.7594340 0.8262519  0.5856859 0.534883721
## 602  0.955263158  0.370647773 0.7605634 0.8268793  0.5874427 0.537313433
## 909  0.954385965  0.369770580 0.7570093 0.8267477  0.5837571 0.536423841
## 112  0.953508772  0.368893387 0.7534884 0.8266160  0.5801043 0.535537190
## 1460 0.953508772  0.371457490 0.7546296 0.8272451  0.5818747 0.537953795
## 925  0.953508772  0.374021592 0.7557604 0.8278751  0.5836355 0.540362438
## 258  0.953508772  0.376585695 0.7568807 0.8285061  0.5853868 0.542763158
## 846  0.953508772  0.379149798 0.7579909 0.8291381  0.5871289 0.545155993
## 230  0.953508772  0.381713900 0.7590909 0.8297710  0.5888619 0.547540984
## 1334 0.953508772  0.384278003 0.7601810 0.8304049  0.5905859 0.549918167
## 269  0.952631579  0.383400810 0.7567568 0.8302752  0.5870320 0.549019608
## 1127 0.952631579  0.385964912 0.7578475 0.8309105  0.5887580 0.551386623
## 528  0.951754386  0.385087719 0.7544643 0.8307810  0.5852453 0.550488599
## 253  0.951754386  0.387651822 0.7555556 0.8314176  0.5869732 0.552845528
## 1210 0.951754386  0.390215924 0.7566372 0.8320552  0.5886924 0.555194805
## 1001 0.950877193  0.389338731 0.7533040 0.8319263  0.5852303 0.554294976
## 223  0.950000000  0.388461538 0.7500000 0.8317972  0.5817972 0.553398058
## 812  0.950000000  0.391025641 0.7510917 0.8324366  0.5835283 0.555735057
## 1432 0.949122807  0.390148448 0.7478261 0.8323077  0.5801338 0.554838710
## 1482 0.948245614  0.389271255 0.7445887 0.8321786  0.5767673 0.553945250
## 850  0.948245614  0.391835358 0.7456897 0.8328197  0.5785094 0.556270096
## 1461 0.948245614  0.394399460 0.7467811 0.8334618  0.5802430 0.558587480
## 684  0.948245614  0.396963563 0.7478632 0.8341049  0.5819682 0.560897436
## 1091 0.948245614  0.399527665 0.7489362 0.8347490  0.5836852 0.563200000
## 136  0.948245614  0.402091768 0.7500000 0.8353941  0.5853941 0.565495208
## 703  0.947368421  0.401214575 0.7468354 0.8352668  0.5821023 0.564593301
## 1238 0.946491228  0.400337382 0.7436975 0.8351393  0.5788368 0.563694268
## 889  0.945614035  0.399460189 0.7405858 0.8350116  0.5755974 0.562798092
## 1292 0.945614035  0.402024291 0.7416667 0.8356589  0.5773256 0.565079365
## 8    0.944736842  0.401147099 0.7385892 0.8355314  0.5741206 0.564183835
## 969  0.944736842  0.403711201 0.7396694 0.8361801  0.5758495 0.566455696
## 49   0.943859649  0.402834008 0.7366255 0.8360528  0.5726784 0.565560821
## 660  0.942982456  0.401956815 0.7336066 0.8359253  0.5695319 0.564668770
## 240  0.942105263  0.401079622 0.7306122 0.8357977  0.5664099 0.563779528
## 561  0.942105263  0.403643725 0.7317073 0.8364486  0.5681559 0.566037736
## 970  0.942105263  0.406207827 0.7327935 0.8371005  0.5698941 0.568288854
## 1111 0.941228070  0.405330634 0.7298387 0.8369735  0.5668122 0.567398119
## 1087 0.941228070  0.407894737 0.7309237 0.8376269  0.5685505 0.569640063
## 1005 0.941228070  0.410458839 0.7320000 0.8382812  0.5702812 0.571875000
## 690  0.941228070  0.413022942 0.7330677 0.8389367  0.5720044 0.574102964
## 1481 0.940350877  0.412145749 0.7301587 0.8388106  0.5689694 0.573208723
## 1352 0.939473684  0.411268556 0.7272727 0.8386844  0.5659571 0.572317263
## 933  0.939473684  0.413832659 0.7283465 0.8393417  0.5676881 0.574534161
## 524  0.938596491  0.412955466 0.7254902 0.8392157  0.5647059 0.573643411
## 1004 0.938596491  0.415519568 0.7265625 0.8398744  0.5664369 0.575851393
## 101  0.937719298  0.414642375 0.7237354 0.8397486  0.5634840 0.574961360
## 32   0.937719298  0.417206478 0.7248062 0.8404088  0.5652150 0.577160494
## 1215 0.937719298  0.419770580 0.7258687 0.8410700  0.5669387 0.579352851
## 1214 0.937719298  0.422334683 0.7269231 0.8417323  0.5686554 0.581538462
## 170  0.936842105  0.421457490 0.7241379 0.8416076  0.5657455 0.580645161
## 939  0.935964912  0.420580297 0.7213740 0.8414826  0.5628567 0.579754601
## 548  0.935087719  0.419703104 0.7186312 0.8413575  0.5599887 0.578866769
## 894  0.934210526  0.418825911 0.7159091 0.8412322  0.5571413 0.577981651
## 1095 0.934210526  0.421390013 0.7169811 0.8418972  0.5588784 0.580152672
## 163  0.934210526  0.423954116 0.7180451 0.8425633  0.5606084 0.582317073
## 226  0.933333333  0.423076923 0.7153558 0.8424386  0.5577944 0.581430746
## 517  0.932456140  0.422199730 0.7126866 0.8423138  0.5550004 0.580547112
## 337  0.931578947  0.421322537 0.7100372 0.8421887  0.5522259 0.579666161
## 993  0.930701754  0.420445344 0.7074074 0.8420635  0.5494709 0.578787879
## 280  0.929824561  0.419568151 0.7047970 0.8419380  0.5467351 0.577912254
## 294  0.929824561  0.422132254 0.7058824 0.8426073  0.5484897 0.580060423
## 689  0.929824561  0.424696356 0.7069597 0.8432776  0.5502374 0.582202112
## 145  0.928947368  0.423819163 0.7043796 0.8431529  0.5475324 0.581325301
## 100  0.928070175  0.422941970 0.7018182 0.8430279  0.5448461 0.580451128
## 1187 0.927192982  0.422064777 0.6992754 0.8429027  0.5421781 0.579579580
## 1389 0.926315789  0.421187584 0.6967509 0.8427773  0.5395282 0.578710645
## 758  0.925438596  0.420310391 0.6942446 0.8426518  0.5368964 0.577844311
## 129  0.924561404  0.419433198 0.6917563 0.8425260  0.5342823 0.576980568
## 687  0.924561404  0.421997301 0.6928571 0.8432000  0.5360571 0.579104478
## 847  0.924561404  0.424561404 0.6939502 0.8438751  0.5378253 0.581222057
## 427  0.923684211  0.423684211 0.6914894 0.8437500  0.5352394 0.580357143
## 287  0.923684211  0.426248313 0.6925795 0.8444266  0.5370061 0.582466568
## 242  0.922807018  0.425371120 0.6901408 0.8443018  0.5344426 0.581602374
## 929  0.922807018  0.427935223 0.6912281 0.8449799  0.5362080 0.583703704
## 151  0.922807018  0.430499325 0.6923077 0.8456592  0.5379669 0.585798817
## 623  0.921929825  0.429622132 0.6898955 0.8455350  0.5354305 0.584933530
## 665  0.921052632  0.428744939 0.6875000 0.8454106  0.5329106 0.584070796
## 984  0.920175439  0.427867746 0.6851211 0.8452861  0.5304072 0.583210604
## 997  0.919298246  0.426990553 0.6827586 0.8451613  0.5279199 0.582352941
## 764  0.918421053  0.426113360 0.6804124 0.8450363  0.5254487 0.581497797
## 641  0.918421053  0.428677463 0.6815068 0.8457189  0.5272258 0.583577713
## 1073 0.917543860  0.427800270 0.6791809 0.8455942  0.5247751 0.582723280
## 273  0.916666667  0.426923077 0.6768707 0.8454693  0.5223400 0.581871345
## 182  0.916666667  0.429487179 0.6779661 0.8461538  0.5241199 0.583941606
## 469  0.915789474  0.428609987 0.6756757 0.8460292  0.5217048 0.583090379
## 119  0.915789474  0.431174089 0.6767677 0.8467153  0.5234830 0.585152838
## 415  0.914912281  0.430296896 0.6744966 0.8465909  0.5210876 0.584302326
## 3    0.914035088  0.429419703 0.6722408 0.8464663  0.5187071 0.583454282
## 819  0.913157895  0.428542510 0.6700000 0.8463415  0.5163415 0.582608696
## 423  0.912280702  0.427665317 0.6677741 0.8462164  0.5139905 0.581765557
## 1105 0.911403509  0.426788124 0.6655629 0.8460912  0.5116541 0.580924855
## 150  0.910526316  0.425910931 0.6633663 0.8459658  0.5093321 0.580086580
## 401  0.909649123  0.425033738 0.6611842 0.8458401  0.5070243 0.579250720
## 693  0.908771930  0.424156545 0.6590164 0.8457143  0.5047307 0.578417266
## 895  0.907894737  0.423279352 0.6568627 0.8455882  0.5024510 0.577586207
## 608  0.907894737  0.425843455 0.6579805 0.8462796  0.5042601 0.579626973
## 113  0.907894737  0.428407557 0.6590909 0.8469722  0.5060631 0.581661891
## 355  0.907894737  0.430971660 0.6601942 0.8476658  0.5078600 0.583690987
## 975  0.907894737  0.433535762 0.6612903 0.8483607  0.5096510 0.585714286
## 298  0.907894737  0.436099865 0.6623794 0.8490566  0.5114360 0.587731812
## 543  0.907017544  0.435222672 0.6602564 0.8489327  0.5091891 0.586894587
## 367  0.906140351  0.434345479 0.6581470 0.8488085  0.5069555 0.586059744
## 219  0.906140351  0.436909582 0.6592357 0.8495066  0.5087422 0.588068182
## 1423 0.906140351  0.439473684 0.6603175 0.8502058  0.5105232 0.590070922
## 1141 0.905263158  0.438596491 0.6582278 0.8500824  0.5083102 0.589235127
## 692  0.905263158  0.441160594 0.6593060 0.8507832  0.5100892 0.591230552
## 380  0.904385965  0.440283401 0.6572327 0.8506601  0.5078928 0.590395480
## 1278 0.903508772  0.439406208 0.6551724 0.8505367  0.5057092 0.589562764
## 1367 0.902631579  0.438529015 0.6531250 0.8504132  0.5035382 0.588732394
## 1296 0.902631579  0.441093117 0.6542056 0.8511166  0.5053222 0.590717300
## 28   0.901754386  0.440215924 0.6521739 0.8509934  0.5031673 0.589887640
## 1462 0.901754386  0.442780027 0.6532508 0.8516984  0.5049492 0.591865358
## 303  0.901754386  0.445344130 0.6543210 0.8524046  0.5067256 0.593837535
## 805  0.901754386  0.447908232 0.6553846 0.8531120  0.5084966 0.595804196
## 1396 0.900877193  0.447031039 0.6533742 0.8529900  0.5063643 0.594972067
## 905  0.900000000  0.446153846 0.6513761 0.8528678  0.5042440 0.594142259
## 1117 0.899122807  0.445276653 0.6493902 0.8527454  0.5021357 0.593314763
## 1014 0.898245614  0.444399460 0.6474164 0.8526228  0.5000392 0.592489569
## 1053 0.898245614  0.446963563 0.6484848 0.8533333  0.5018182 0.594444444
## 38   0.897368421  0.446086370 0.6465257 0.8532110  0.4997367 0.593619972
## 172  0.896491228  0.445209177 0.6445783 0.8530885  0.4976668 0.592797784
## 596  0.895614035  0.444331984 0.6426426 0.8529657  0.4956084 0.591977870
## 935  0.895614035  0.446896086 0.6437126 0.8536789  0.4973915 0.593922652
## 117  0.895614035  0.449460189 0.6447761 0.8543933  0.4991694 0.595862069
## 827  0.894736842  0.448582996 0.6428571 0.8542714  0.4971285 0.595041322
## 749  0.893859649  0.447705803 0.6409496 0.8541492  0.4950988 0.594222834
## 1480 0.892982456  0.446828610 0.6390533 0.8540268  0.4930801 0.593406593
## 153  0.892982456  0.449392713 0.6401180 0.8547439  0.4948619 0.595336077
## 274  0.892105263  0.448515520 0.6382353 0.8546218  0.4928571 0.594520548
## 1331 0.892105263  0.451079622 0.6392962 0.8553406  0.4946368 0.596443228
## 1079 0.891228070  0.450202429 0.6374269 0.8552189  0.4926458 0.595628415
## 137  0.890350877  0.449325236 0.6355685 0.8550969  0.4906654 0.594815825
## 1218 0.890350877  0.451889339 0.6366279 0.8558179  0.4924458 0.596730245
## 837  0.889473684  0.451012146 0.6347826 0.8556962  0.4904788 0.595918367
## 1054 0.889473684  0.453576248 0.6358382 0.8564189  0.4922571 0.597826087
## 675  0.888596491  0.452699055 0.6340058 0.8562975  0.4903033 0.597014925
## 568  0.888596491  0.455263158 0.6350575 0.8570220  0.4920795 0.598915989
## 126  0.887719298  0.454385965 0.6332378 0.8569009  0.4901388 0.598105548
## 470  0.886842105  0.453508772 0.6314286 0.8567797  0.4882082 0.597297297
## 422  0.885964912  0.452631579 0.6296296 0.8566582  0.4862878 0.596491228
## 1032 0.885087719  0.451754386 0.6278409 0.8565365  0.4843774 0.595687332
## 1300 0.885087719  0.454318489 0.6288952 0.8572642  0.4861594 0.597577389
## 17   0.885087719  0.456882591 0.6299435 0.8579932  0.4879367 0.599462366
## 257  0.885087719  0.459446694 0.6309859 0.8587234  0.4897093 0.601342282
## 657  0.884210526  0.458569501 0.6292135 0.8586031  0.4878165 0.600536193
## 187  0.883333333  0.457692308 0.6274510 0.8584825  0.4859335 0.599732262
## 1069 0.882456140  0.456815115 0.6256983 0.8583618  0.4840601 0.598930481
## 185  0.881578947  0.455937922 0.6239554 0.8582408  0.4821963 0.598130841
## 464  0.880701754  0.455060729 0.6222222 0.8581197  0.4803419 0.597333333
## 775  0.879824561  0.454183536 0.6204986 0.8579983  0.4784969 0.596537949
## 1027 0.878947368  0.453306343 0.6187845 0.8578767  0.4766612 0.595744681
## 924  0.878947368  0.455870445 0.6198347 0.8586118  0.4784465 0.597609562
## 483  0.878947368  0.458434548 0.6208791 0.8593482  0.4802273 0.599469496
## 1110 0.878070175  0.457557355 0.6191781 0.8592275  0.4784056 0.598675497
## 118  0.877192982  0.456680162 0.6174863 0.8591065  0.4765929 0.597883598
## 798  0.876315789  0.455802969 0.6158038 0.8589854  0.4747892 0.597093791
## 581  0.875438596  0.454925776 0.6141304 0.8588640  0.4729945 0.596306069
## 1226 0.874561404  0.454048583 0.6124661 0.8587425  0.4712086 0.595520422
## 1437 0.873684211  0.453171390 0.6108108 0.8586207  0.4694315 0.594736842
## 579  0.872807018  0.452294197 0.6091644 0.8584987  0.4676631 0.593955322
## 816  0.871929825  0.451417004 0.6075269 0.8583765  0.4659034 0.593175853
## 541  0.871052632  0.450539811 0.6058981 0.8582541  0.4641522 0.592398427
## 390  0.870175439  0.449662618 0.6042781 0.8581315  0.4624096 0.591623037
## 181  0.870175439  0.452226721 0.6053333 0.8588745  0.4642078 0.593464052
## 810  0.870175439  0.454790823 0.6063830 0.8596187  0.4660017 0.595300261
## 202  0.869298246  0.453913630 0.6047745 0.8594970  0.4642715 0.594524120
## 1078 0.868421053  0.453036437 0.6031746 0.8593750  0.4625496 0.593750000
## 976  0.868421053  0.455600540 0.6042216 0.8601216  0.4643433 0.595578674
## 1142 0.867543860  0.454723347 0.6026316 0.8600000  0.4626316 0.594805195
## 323  0.866666667  0.453846154 0.6010499 0.8598782  0.4609280 0.594033722
## 886  0.865789474  0.452968961 0.5994764 0.8597561  0.4592325 0.593264249
## 1207 0.865789474  0.455533063 0.6005222 0.8605057  0.4610279 0.595084088
## 418  0.864912281  0.454655870 0.5989583 0.8603839  0.4593423 0.594315245
## 512  0.864035088  0.453778677 0.5974026 0.8602620  0.4576646 0.593548387
## 789  0.863157895  0.452901484 0.5958549 0.8601399  0.4559948 0.592783505
## 308  0.862280702  0.452024291 0.5943152 0.8600175  0.4543327 0.592020592
## 1473 0.861403509  0.451147099 0.5927835 0.8598949  0.4526784 0.591259640
## 792  0.860526316  0.450269906 0.5912596 0.8597721  0.4510318 0.590500642
## 891  0.859649123  0.449392713 0.5897436 0.8596491  0.4493927 0.589743590
## 564  0.859649123  0.451956815 0.5907928 0.8604039  0.4511967 0.591549296
## 338  0.858771930  0.451079622 0.5892857 0.8602812  0.4495669 0.590792839
## 468  0.857894737  0.450202429 0.5877863 0.8601583  0.4479446 0.590038314
## 851  0.857894737  0.452766532 0.5888325 0.8609155  0.4497480 0.591836735
## 967  0.857894737  0.455330634 0.5898734 0.8616740  0.4515474 0.593630573
## 293  0.857017544  0.454453441 0.5883838 0.8615520  0.4499359 0.592875318
## 990  0.856140351  0.453576248 0.5869018 0.8614298  0.4483316 0.592121982
## 364  0.855263158  0.452699055 0.5854271 0.8613074  0.4467346 0.591370558
## 945  0.854385965  0.451821862 0.5839599 0.8611848  0.4451447 0.590621039
## 1042 0.853508772  0.450944669 0.5825000 0.8610619  0.4435619 0.589873418
## 307  0.853508772  0.453508772 0.5835411 0.8618246  0.4453658 0.591656131
## 1491 0.852631579  0.452631579 0.5820896 0.8617021  0.4437917 0.590909091
## 526  0.851754386  0.451754386 0.5806452 0.8615794  0.4422246 0.590163934
## 131  0.850877193  0.450877193 0.5792079 0.8614565  0.4406644 0.589420655
## 946  0.850000000  0.450000000 0.5777778 0.8613333  0.4391111 0.588679245
## 322  0.849122807  0.449122807 0.5763547 0.8612100  0.4375646 0.587939698
## 1169 0.849122807  0.451686910 0.5773956 0.8619768  0.4393724 0.589711418
## 628  0.848245614  0.450809717 0.5759804 0.8618538  0.4378342 0.588972431
## 22   0.848245614  0.453373819 0.5770171 0.8626227  0.4396398 0.590738423
## 988  0.847368421  0.452496626 0.5756098 0.8625000  0.4381098 0.590000000
## 1104 0.846491228  0.451619433 0.5742092 0.8623771  0.4365864 0.589263421
## 520  0.845614035  0.450742240 0.5728155 0.8622540  0.4350696 0.588528678
## 603  0.845614035  0.453306343 0.5738499 0.8630260  0.4368758 0.590286426
## 122  0.844736842  0.452429150 0.5724638 0.8629032  0.4353670 0.589552239
## 973  0.844736842  0.454993252 0.5734940 0.8636771  0.4371711 0.591304348
## 559  0.844736842  0.457557355 0.5745192 0.8644524  0.4389717 0.593052109
## 263  0.843859649  0.456680162 0.5731415 0.8643306  0.4374721 0.592317224
## 718  0.842982456  0.455802969 0.5717703 0.8642086  0.4359790 0.591584158
## 41   0.842105263  0.454925776 0.5704057 0.8640864  0.4344921 0.590852905
## 1453 0.842105263  0.457489879 0.5714286 0.8648649  0.4362934 0.592592593
## 808  0.842105263  0.460053981 0.5724466 0.8656447  0.4380913 0.594327990
## 344  0.841228070  0.459176788 0.5710900 0.8655235  0.4366135 0.593596059
## 1171 0.841228070  0.461740891 0.5721040 0.8663053  0.4384093 0.595325953
## 218  0.841228070  0.464304993 0.5731132 0.8670886  0.4402018 0.597051597
## 1417 0.841228070  0.466869096 0.5741176 0.8678733  0.4419910 0.598773006
## 227  0.840350877  0.465991903 0.5727700 0.8677536  0.4405236 0.598039216
## 1410 0.839473684  0.465114710 0.5714286 0.8676337  0.4390623 0.597307222
## 237  0.838596491  0.464237517 0.5700935 0.8675136  0.4376071 0.596577017
## 750  0.837719298  0.463360324 0.5687646 0.8673933  0.4361578 0.595848596
## 1424 0.836842105  0.462483131 0.5674419 0.8672727  0.4347146 0.595121951
## 184  0.835964912  0.461605938 0.5661253 0.8671520  0.4332772 0.594397077
## 264  0.835964912  0.464170040 0.5671296 0.8679417  0.4350713 0.596107056
## 1114 0.835087719  0.463292848 0.5658199 0.8678213  0.4336412 0.595382746
## 1008 0.834210526  0.462415655 0.5645161 0.8677007  0.4322169 0.594660194
## 335  0.833333333  0.461538462 0.5632184 0.8675799  0.4307983 0.593939394
## 498  0.832456140  0.460661269 0.5619266 0.8674589  0.4293855 0.593220339
## 1497 0.831578947  0.459784076 0.5606407 0.8673376  0.4279783 0.592503023
## 42   0.831578947  0.462348178 0.5616438 0.8681319  0.4297757 0.594202899
## 1012 0.830701754  0.461470985 0.5603645 0.8680110  0.4283755 0.593486128
## 685  0.830701754  0.464035088 0.5613636 0.8688073  0.4301710 0.595180723
## 634  0.829824561  0.463157895 0.5600907 0.8686869  0.4287776 0.594464501
## 125  0.828947368  0.462280702 0.5588235 0.8685662  0.4273897 0.593750000
## 1155 0.828070175  0.461403509 0.5575621 0.8684453  0.4260073 0.593037215
## 86   0.827192982  0.460526316 0.5563063 0.8683241  0.4246304 0.592326139
## 288  0.827192982  0.463090418 0.5573034 0.8691244  0.4264278 0.594011976
## 1068 0.826315789  0.462213225 0.5560538 0.8690037  0.4250575 0.593301435
## 1454 0.826315789  0.464777328 0.5570470 0.8698061  0.4268531 0.594982079
## 203  0.825438596  0.463900135 0.5558036 0.8696858  0.4254893 0.594272076
## 200  0.825438596  0.466464238 0.5567929 0.8704903  0.4272832 0.595947557
## 61   0.824561404  0.465587045 0.5555556 0.8703704  0.4259259 0.595238095
## 286  0.824561404  0.468151147 0.5565410 0.8711770  0.4277180 0.596908442
## 402  0.823684211  0.467273954 0.5553097 0.8710575  0.4263672 0.596199525
## 1526 0.822807018  0.466396761 0.5540839 0.8709378  0.4250217 0.595492289
## 1033 0.821929825  0.465519568 0.5528634 0.8708178  0.4236813 0.594786730
## 56   0.821929825  0.468083671 0.5538462 0.8716279  0.4254741 0.596449704
## 783  0.821052632  0.467206478 0.5526316 0.8715084  0.4241400 0.595744681
## 655  0.820175439  0.466329285 0.5514223 0.8713886  0.4228109 0.595041322
## 773  0.819298246  0.465452092 0.5502183 0.8712687  0.4214870 0.594339623
## 1285 0.818421053  0.464574899 0.5490196 0.8711485  0.4201681 0.593639576
## 1128 0.818421053  0.467139001 0.5500000 0.8719626  0.4219626 0.595294118
## 331  0.817543860  0.466261808 0.5488069 0.8718428  0.4206498 0.594594595
## 938  0.816666667  0.465384615 0.5476190 0.8717228  0.4193419 0.593896714
## 1088 0.816666667  0.467948718 0.5485961 0.8725398  0.4211359 0.595545135
## 1225 0.815789474  0.467071525 0.5474138 0.8724203  0.4198341 0.594847775
## 1486 0.814912281  0.466194332 0.5462366 0.8723005  0.4185370 0.594152047
## 1150 0.814035088  0.465317139 0.5450644 0.8721805  0.4172448 0.593457944
## 183  0.813157895  0.464439946 0.5438972 0.8720602  0.4159574 0.592765461
## 437  0.813157895  0.467004049 0.5448718 0.8728814  0.4177532 0.594405594
## 731  0.813157895  0.469568151 0.5458422 0.8737041  0.4195463 0.596041909
## 1075 0.812280702  0.468690958 0.5446809 0.8735849  0.4182658 0.595348837
## 10   0.811403509  0.467813765 0.5435244 0.8734655  0.4169899 0.594657375
## 1264 0.810526316  0.466936572 0.5423729 0.8733459  0.4157188 0.593967517
## 12   0.809649123  0.466059379 0.5412262 0.8732261  0.4144523 0.593279258
## 1318 0.808771930  0.465182186 0.5400844 0.8731061  0.4131904 0.592592593
## 1457 0.808771930  0.467746289 0.5410526 0.8739336  0.4149863 0.594219653
## 70   0.808771930  0.470310391 0.5420168 0.8747628  0.4167796 0.595842956
## 873  0.807894737  0.469433198 0.5408805 0.8746439  0.4155244 0.595155709
## 1164 0.807017544  0.468556005 0.5397490 0.8745247  0.4142737 0.594470046
## 1056 0.807017544  0.471120108 0.5407098 0.8753568  0.4160666 0.596087457
## 239  0.807017544  0.473684211 0.5416667 0.8761905  0.4178571 0.597701149
## 270  0.806140351  0.472807018 0.5405405 0.8760724  0.4166130 0.597014925
## 81   0.805263158  0.471929825 0.5394191 0.8759542  0.4153733 0.596330275
## 632  0.804385965  0.471052632 0.5383023 0.8758357  0.4141380 0.595647194
## 1122 0.803508772  0.470175439 0.5371901 0.8757170  0.4129071 0.594965675
## 231  0.802631579  0.469298246 0.5360825 0.8755981  0.4116806 0.594285714
## 652  0.801754386  0.468421053 0.5349794 0.8754789  0.4104584 0.593607306
## 653  0.800877193  0.467543860 0.5338809 0.8753595  0.4092404 0.592930445
## 1045 0.800877193  0.470107962 0.5348361 0.8761996  0.4110357 0.594533030
## 723  0.800877193  0.472672065 0.5357873 0.8770413  0.4128286 0.596131968
## 1295 0.800877193  0.475236167 0.5367347 0.8778846  0.4146193 0.597727273
## 1244 0.800000000  0.474358974 0.5356415 0.8777671  0.4134086 0.597048808
## 326  0.799122807  0.473481781 0.5345528 0.8776493  0.4122022 0.596371882
## 861  0.798245614  0.472604588 0.5334686 0.8775313  0.4109999 0.595696489
## 1228 0.797368421  0.471727395 0.5323887 0.8774131  0.4098018 0.595022624
## 913  0.796491228  0.470850202 0.5313131 0.8772947  0.4086078 0.594350282
## 214  0.795614035  0.469973009 0.5302419 0.8771760  0.4074180 0.593679458
## 1317 0.794736842  0.469095816 0.5291751 0.8770571  0.4062322 0.593010147
## 728  0.794736842  0.471659919 0.5301205 0.8779070  0.4080275 0.594594595
## 222  0.793859649  0.470782726 0.5290581 0.8777886  0.4068467 0.593925759
## 522  0.792982456  0.469905533 0.5280000 0.8776699  0.4056699 0.593258427
## 451  0.792105263  0.469028340 0.5269461 0.8775510  0.4044971 0.592592593
## 765  0.791228070  0.468151147 0.5258964 0.8774319  0.4033283 0.591928251
## 1504 0.790350877  0.467273954 0.5248509 0.8773126  0.4021635 0.591265398
## 65   0.789473684  0.466396761 0.5238095 0.8771930  0.4010025 0.590604027
## 1381 0.788596491  0.465519568 0.5227723 0.8770732  0.3998454 0.589944134
## 1397 0.787719298  0.464642375 0.5217391 0.8769531  0.3986923 0.589285714
## 736  0.786842105  0.463765182 0.5207101 0.8768328  0.3975429 0.588628763
## 1161 0.785964912  0.462887989 0.5196850 0.8767123  0.3963974 0.587973274
## 1520 0.785087719  0.462010796 0.5186640 0.8765916  0.3952556 0.587319244
## 558  0.785087719  0.464574899 0.5196078 0.8774510  0.3970588 0.588888889
## 1419 0.785087719  0.467139001 0.5205479 0.8783121  0.3988600 0.590455050
## 610  0.785087719  0.469703104 0.5214844 0.8791749  0.4006592 0.592017738
## 405  0.784210526  0.468825911 0.5204678 0.8790560  0.3995239 0.591362126
## 954  0.783333333  0.467948718 0.5194553 0.8789370  0.3983923 0.590707965
## 155  0.782456140  0.467071525 0.5184466 0.8788177  0.3972643 0.590055249
## 411  0.781578947  0.466194332 0.5174419 0.8786982  0.3961401 0.589403974
## 1499 0.780701754  0.465317139 0.5164410 0.8785785  0.3950195 0.588754135
## 349  0.779824561  0.464439946 0.5154440 0.8784585  0.3939025 0.588105727
## 35   0.779824561  0.467004049 0.5163776 0.8793274  0.3957050 0.589658966
## 98   0.778947368  0.466126856 0.5153846 0.8792079  0.3945925 0.589010989
## 1201 0.778070175  0.465249663 0.5143954 0.8790882  0.3934836 0.588364435
## 1439 0.777192982  0.464372470 0.5134100 0.8789683  0.3923782 0.587719298
## 859  0.776315789  0.463495277 0.5124283 0.8788481  0.3912764 0.587075575
## 1290 0.776315789  0.466059379 0.5133588 0.8797217  0.3930804 0.588621444
## 490  0.776315789  0.468623482 0.5142857 0.8805970  0.3948827 0.590163934
## 732  0.776315789  0.471187584 0.5152091 0.8814741  0.3966832 0.591703057
## 1452 0.776315789  0.473751687 0.5161290 0.8823529  0.3984820 0.593238822
## 835  0.775438596  0.472874494 0.5151515 0.8822355  0.3973870 0.592592593
## 1294 0.775438596  0.475438596 0.5160681 0.8831169  0.3991849 0.594124048
## 45   0.775438596  0.478002699 0.5169811 0.8840000  0.4009811 0.595652174
## 672  0.774561404  0.477125506 0.5160075 0.8838839  0.3998914 0.595005429
## 1084 0.773684211  0.476248313 0.5150376 0.8837675  0.3988051 0.594360087
## 171  0.773684211  0.478812416 0.5159475 0.8846540  0.4006014 0.595882990
## 576  0.772807018  0.477935223 0.5149813 0.8845382  0.3995194 0.595238095
## 13   0.771929825  0.477058030 0.5140187 0.8844221  0.3984408 0.594594595
## 659  0.771052632  0.476180837 0.5130597 0.8843058  0.3973655 0.593952484
## 9    0.770175439  0.475303644 0.5121043 0.8841893  0.3962936 0.593311758
## 956  0.769298246  0.474426451 0.5111524 0.8840726  0.3952250 0.592672414
## 76   0.768421053  0.473549258 0.5102041 0.8839556  0.3941597 0.592034446
## 597  0.767543860  0.472672065 0.5092593 0.8838384  0.3930976 0.591397849
## 1479 0.766666667  0.471794872 0.5083179 0.8837209  0.3920389 0.590762621
## 519  0.765789474  0.470917679 0.5073801 0.8836032  0.3909833 0.590128755
## 1380 0.764912281  0.470040486 0.5064457 0.8834853  0.3899310 0.589496249
## 371  0.764035088  0.469163293 0.5055147 0.8833671  0.3888818 0.588865096
## 463  0.763157895  0.468286100 0.5045872 0.8832487  0.3878359 0.588235294
## 496  0.762280702  0.467408907 0.5036630 0.8831301  0.3867931 0.587606838
## 95   0.761403509  0.466531714 0.5027422 0.8830112  0.3857534 0.586979723
## 506  0.760526316  0.465654521 0.5018248 0.8828921  0.3847169 0.586353945
## 742  0.759649123  0.464777328 0.5009107 0.8827727  0.3836834 0.585729499
## 1483 0.758771930  0.463900135 0.5000000 0.8826531  0.3826531 0.585106383
## 85   0.757894737  0.463022942 0.4990926 0.8825332  0.3816258 0.584484591
## 1274 0.757017544  0.462145749 0.4981884 0.8824131  0.3806015 0.583864119
## 1162 0.756140351  0.461268556 0.4972875 0.8822927  0.3795803 0.583244963
## 930  0.756140351  0.463832659 0.4981949 0.8831967  0.3813917 0.584745763
## 504  0.755263158  0.462955466 0.4972973 0.8830769  0.3803742 0.584126984
## 1372 0.755263158  0.465519568 0.4982014 0.8839836  0.3821850 0.585623679
## 836  0.754385965  0.464642375 0.4973070 0.8838643  0.3811713 0.585005280
## 1261 0.753508772  0.463765182 0.4964158 0.8837449  0.3801606 0.584388186
## 209  0.752631579  0.462887989 0.4955277 0.8836251  0.3791529 0.583772392
## 1011 0.751754386  0.462010796 0.4946429 0.8835052  0.3781480 0.583157895
## 103  0.751754386  0.464574899 0.4955437 0.8844169  0.3799606 0.584647739
## 168  0.750877193  0.463697706 0.4946619 0.8842975  0.3789594 0.584033613
## 180  0.750000000  0.462820513 0.4937833 0.8841779  0.3779612 0.583420776
## 190  0.749122807  0.461943320 0.4929078 0.8840580  0.3769658 0.582809224
## 165  0.748245614  0.461066127 0.4920354 0.8839378  0.3759732 0.582198953
## 277  0.747368421  0.460188934 0.4911661 0.8838174  0.3749835 0.581589958
## 844  0.747368421  0.462753036 0.4920635 0.8847352  0.3767987 0.583072100
## 1510 0.746491228  0.461875843 0.4911972 0.8846154  0.3758126 0.582463466
## 510  0.745614035  0.460998650 0.4903339 0.8844953  0.3748292 0.581856100
## 920  0.744736842  0.460121457 0.4894737 0.8843750  0.3738487 0.581250000
## 356  0.743859649  0.459244265 0.4886165 0.8842544  0.3728709 0.580645161
## 48   0.742982456  0.458367072 0.4877622 0.8841336  0.3718958 0.580041580
## 489  0.742982456  0.460931174 0.4886562 0.8850575  0.3737137 0.581516096
## 186  0.742105263  0.460053981 0.4878049 0.8849372  0.3727421 0.580912863
## 79   0.741228070  0.459176788 0.4869565 0.8848168  0.3717733 0.580310881
## 173  0.740350877  0.458299595 0.4861111 0.8846960  0.3708071 0.579710145
## 802  0.740350877  0.460863698 0.4870017 0.8856243  0.3726261 0.581178904
## 505  0.739473684  0.459986505 0.4861592 0.8855042  0.3716634 0.580578512
## 1167 0.739473684  0.462550607 0.4870466 0.8864353  0.3734820 0.582043344
## 1205 0.738596491  0.461673414 0.4862069 0.8863158  0.3725227 0.581443299
## 1309 0.737719298  0.460796221 0.4853701 0.8861960  0.3715660 0.580844490
## 397  0.737719298  0.463360324 0.4862543 0.8871308  0.3733851 0.582304527
## 794  0.736842105  0.462483131 0.4854202 0.8870116  0.3724319 0.581706064
## 1356 0.735964912  0.461605938 0.4845890 0.8868922  0.3714812 0.581108830
## 1506 0.735087719  0.460728745 0.4837607 0.8867725  0.3705332 0.580512821
## 146  0.735087719  0.463292848 0.4846416 0.8877119  0.3723535 0.581967213
## 1395 0.734210526  0.462415655 0.4838160 0.8875928  0.3714088 0.581371546
## 1193 0.733333333  0.461538462 0.4829932 0.8874735  0.3704667 0.580777096
## 831  0.732456140  0.460661269 0.4821732 0.8873539  0.3695271 0.580183861
## 985  0.731578947  0.459784076 0.4813559 0.8872340  0.3685900 0.579591837
## 260  0.730701754  0.458906883 0.4805415 0.8871140  0.3676554 0.579001019
## 93   0.729824561  0.458029690 0.4797297 0.8869936  0.3667233 0.578411405
## 1342 0.728947368  0.457152497 0.4789207 0.8868730  0.3657937 0.577822991
## 156  0.728070175  0.456275304 0.4781145 0.8867521  0.3648666 0.577235772
## 1140 0.727192982  0.455398111 0.4773109 0.8866310  0.3639419 0.576649746
## 630  0.726315789  0.454520918 0.4765101 0.8865096  0.3630197 0.576064909
## 381  0.725438596  0.453643725 0.4757119 0.8863880  0.3620999 0.575481256
## 63   0.724561404  0.452766532 0.4749164 0.8862661  0.3611825 0.574898785
## 921  0.723684211  0.451889339 0.4741235 0.8861439  0.3602675 0.574317492
## 768  0.722807018  0.451012146 0.4733333 0.8860215  0.3593548 0.573737374
## 108  0.722807018  0.453576248 0.4742097 0.8869752  0.3611849 0.575176589
## 178  0.721929825  0.452699055 0.4734219 0.8868534  0.3602754 0.574596774
## 828  0.721052632  0.451821862 0.4726368 0.8867314  0.3593682 0.574018127
## 787  0.720175439  0.450944669 0.4718543 0.8866091  0.3584634 0.573440644
## 1518 0.719298246  0.450067476 0.4710744 0.8864865  0.3575609 0.572864322
## 583  0.718421053  0.449190283 0.4702970 0.8863636  0.3566607 0.572289157
## 575  0.717543860  0.448313090 0.4695222 0.8862405  0.3557628 0.571715145
## 1345 0.716666667  0.447435897 0.4687500 0.8861171  0.3548671 0.571142285
## 166  0.715789474  0.446558704 0.4679803 0.8859935  0.3539738 0.570570571
## 751  0.714912281  0.445681511 0.4672131 0.8858696  0.3530827 0.570000000
## 1130 0.714035088  0.444804318 0.4664484 0.8857454  0.3521938 0.569430569
## 649  0.713157895  0.443927126 0.4656863 0.8856209  0.3513072 0.568862275
## 494  0.712280702  0.443049933 0.4649266 0.8854962  0.3504228 0.568295115
## 908  0.711403509  0.442172740 0.4641694 0.8853712  0.3495406 0.567729084
## 647  0.710526316  0.441295547 0.4634146 0.8852459  0.3486605 0.567164179
## 60   0.710526316  0.443859649 0.4642857 0.8862144  0.3505002 0.568588469
## 154  0.709649123  0.442982456 0.4635332 0.8860898  0.3496230 0.568023833
## 1375 0.708771930  0.442105263 0.4627832 0.8859649  0.3487481 0.567460317
## 1341 0.708771930  0.444669366 0.4636511 0.8869374  0.3505885 0.568880079
## 318  0.707894737  0.443792173 0.4629032 0.8868132  0.3497164 0.568316832
## 864  0.707017544  0.442914980 0.4621578 0.8866887  0.3488465 0.567754698
## 1211 0.707017544  0.445479082 0.4630225 0.8876652  0.3506877 0.569169960
## 977  0.706140351  0.444601889 0.4622793 0.8875413  0.3498206 0.568608095
## 601  0.706140351  0.447165992 0.4631410 0.8885210  0.3516620 0.570019724
## 1050 0.706140351  0.449730094 0.4640000 0.8895028  0.3535028 0.571428571
## 428  0.705263158  0.448852901 0.4632588 0.8893805  0.3526393 0.570866142
## 1002 0.704385965  0.447975709 0.4625199 0.8892580  0.3517780 0.570304818
## 927  0.704385965  0.450539811 0.4633758 0.8902439  0.3536197 0.571709234
## 446  0.704385965  0.453103914 0.4642289 0.8912320  0.3554609 0.573110893
## 1476 0.703508772  0.452226721 0.4634921 0.8911111  0.3546032 0.572549020
## 434  0.702631579  0.451349528 0.4627575 0.8909900  0.3537475 0.571988247
## 140  0.701754386  0.450472335 0.4620253 0.8908686  0.3528939 0.571428571
## 1459 0.701754386  0.453036437 0.4628752 0.8918618  0.3547370 0.572825024
## 207  0.700877193  0.452159244 0.4621451 0.8917411  0.3538862 0.572265625
## 1333 0.700877193  0.454723347 0.4629921 0.8927374  0.3557296 0.573658537
## 991  0.700000000  0.453846154 0.4622642 0.8926174  0.3548816 0.573099415
## 502  0.699122807  0.452968961 0.4615385 0.8924972  0.3540357 0.572541383
## 1229 0.698245614  0.452091768 0.4608150 0.8923767  0.3531917 0.571984436
## 887  0.697368421  0.451214575 0.4600939 0.8922559  0.3523498 0.571428571
## 134  0.696491228  0.450337382 0.4593750 0.8921348  0.3515098 0.570873786
## 234  0.695614035  0.449460189 0.4586583 0.8920135  0.3506718 0.570320078
## 447  0.695614035  0.452024291 0.4595016 0.8930180  0.3525196 0.571705426
## 853  0.695614035  0.454588394 0.4603421 0.8940248  0.3543669 0.573088093
## 1495 0.694736842  0.453711201 0.4596273 0.8939052  0.3535325 0.572533849
## 1232 0.693859649  0.452834008 0.4589147 0.8937853  0.3527000 0.571980676
## 319  0.692982456  0.451956815 0.4582043 0.8936652  0.3518695 0.571428571
## 529  0.692105263  0.451079622 0.4574961 0.8935447  0.3510409 0.570877531
## 1522 0.691228070  0.450202429 0.4567901 0.8934240  0.3502142 0.570327553
## 577  0.690350877  0.449325236 0.4560863 0.8933031  0.3493894 0.569778633
## 906  0.689473684  0.448448043 0.4553846 0.8931818  0.3485664 0.569230769
## 1277 0.688596491  0.447570850 0.4546851 0.8930603  0.3477454 0.568683958
## 403  0.687719298  0.446693657 0.4539877 0.8929385  0.3469262 0.568138196
## 473  0.686842105  0.445816464 0.4532925 0.8928164  0.3461089 0.567593480
## 1474 0.685964912  0.444939271 0.4525994 0.8926941  0.3452935 0.567049808
## 1160 0.685087719  0.444062078 0.4519084 0.8925714  0.3444798 0.566507177
## 229  0.684210526  0.443184885 0.4512195 0.8924485  0.3436680 0.565965583
## 493  0.683333333  0.442307692 0.4505327 0.8923253  0.3428580 0.565425024
## 1463 0.682456140  0.441430499 0.4498480 0.8922018  0.3420499 0.564885496
## 865  0.681578947  0.440553306 0.4491654 0.8920781  0.3412435 0.564346997
## 144  0.680701754  0.439676113 0.4484848 0.8919540  0.3404389 0.563809524
## 1362 0.679824561  0.438798920 0.4478064 0.8918297  0.3396360 0.563273073
## 142  0.679824561  0.441363023 0.4486405 0.8928571  0.3414976 0.564638783
## 1191 0.678947368  0.440485830 0.4479638 0.8927336  0.3406974 0.564102564
## 696  0.678070175  0.439608637 0.4472892 0.8926097  0.3398989 0.563567362
## 989  0.677192982  0.438731444 0.4466165 0.8924855  0.3391021 0.563033175
## 587  0.676315789  0.437854251 0.4459459 0.8923611  0.3383071 0.562500000
## 1378 0.675438596  0.436977058 0.4452774 0.8922364  0.3375137 0.561967833
## 238  0.673684211  0.435222672 0.4439462 0.8919861  0.3359323 0.560906516
## 1182 0.673684211  0.435222672 0.4439462 0.8919861  0.3359323 0.560906516
## 1154 0.672807018  0.434345479 0.4432836 0.8918605  0.3351440 0.560377358
## 1060 0.671929825  0.433468286 0.4426230 0.8917346  0.3343575 0.559849199
## 246  0.671052632  0.432591093 0.4419643 0.8916084  0.3335727 0.559322034
## 343  0.670175439  0.431713900 0.4413076 0.8914819  0.3327895 0.558795861
## 974  0.670175439  0.434278003 0.4421365 0.8925234  0.3346599 0.560150376
## 268  0.669298246  0.433400810 0.4414815 0.8923977  0.3338791 0.559624413
## 368  0.667543860  0.431646424 0.4401773 0.8921454  0.3323226 0.558575445
## 1465 0.667543860  0.431646424 0.4401773 0.8921454  0.3323226 0.558575445
## 1019 0.666666667  0.430769231 0.4395280 0.8920188  0.3315468 0.558052434
## 1137 0.665789474  0.429892038 0.4388807 0.8918919  0.3307726 0.557530402
## 739  0.664912281  0.429014845 0.4382353 0.8917647  0.3300000 0.557009346
## 1502 0.664035088  0.428137652 0.4375918 0.8916372  0.3292290 0.556489262
## 1496 0.663157895  0.427260459 0.4369501 0.8915094  0.3284596 0.555970149
## 1327 0.662280702  0.426383266 0.4363104 0.8913813  0.3276917 0.555452004
## 1448 0.661403509  0.425506073 0.4356725 0.8912530  0.3269255 0.554934823
## 1230 0.660526316  0.424628880 0.4350365 0.8911243  0.3261608 0.554418605
## 1298 0.660526316  0.427192982 0.4358601 0.8921801  0.3280402 0.555762082
## 671  0.659649123  0.426315789 0.4352256 0.8920522  0.3272778 0.555246054
## 1257 0.658771930  0.425438596 0.4345930 0.8919240  0.3265170 0.554730983
## 291  0.657894737  0.424561404 0.4339623 0.8917955  0.3257577 0.554216867
## 1250 0.657017544  0.423684211 0.4333333 0.8916667  0.3250000 0.553703704
## 1065 0.656140351  0.422807018 0.4327062 0.8915375  0.3242438 0.553191489
## 58   0.655263158  0.421929825 0.4320809 0.8914081  0.3234890 0.552680222
## 745  0.654385965  0.421052632 0.4314574 0.8912784  0.3227358 0.552169898
## 901  0.653508772  0.420175439 0.4308357 0.8911483  0.3219841 0.551660517
## 1500 0.652631579  0.419298246 0.4302158 0.8910180  0.3212338 0.551152074
## 763  0.651754386  0.418421053 0.4295977 0.8908873  0.3204850 0.550644567
## 21   0.650877193  0.417543860 0.4289813 0.8907563  0.3197377 0.550137994
## 441  0.650877193  0.420107962 0.4297994 0.8918269  0.3216264 0.551470588
## 833  0.650000000  0.419230769 0.4291845 0.8916968  0.3208813 0.550964187
## 1096 0.650000000  0.421794872 0.4300000 0.8927711  0.3227711 0.552293578
## 791  0.649122807  0.420917679 0.4293866 0.8926417  0.3220283 0.551787351
## 549  0.648245614  0.420040486 0.4287749 0.8925121  0.3212870 0.551282051
## 1371 0.648245614  0.422604588 0.4295875 0.8935913  0.3231788 0.552607502
## 1494 0.647368421  0.421727395 0.4289773 0.8934625  0.3224397 0.552102377
## 448  0.647368421  0.424291498 0.4297872 0.8945455  0.3243327 0.553424658
## 382  0.646491228  0.423414305 0.4291785 0.8944175  0.3235959 0.552919708
## 949  0.645614035  0.422537112 0.4285714 0.8942892  0.3228606 0.552415679
## 666  0.644736842  0.421659919 0.4279661 0.8941606  0.3221267 0.551912568
## 1179 0.644736842  0.424224022 0.4287729 0.8952497  0.3240226 0.553230209
## 106  0.643859649  0.423346829 0.4281690 0.8951220  0.3232910 0.552727273
## 640  0.643859649  0.425910931 0.4289733 0.8962149  0.3251882 0.554041780
## 1235 0.642982456  0.425033738 0.4283708 0.8960880  0.3244588 0.553539020
## 863  0.642105263  0.424156545 0.4277700 0.8959608  0.3237308 0.553037171
## 774  0.641228070  0.423279352 0.4271709 0.8958333  0.3230042 0.552536232
## 1282 0.640350877  0.422402159 0.4265734 0.8957055  0.3222789 0.552036199
## 615  0.639473684  0.421524966 0.4259777 0.8955774  0.3215550 0.551537071
## 1233 0.638596491  0.420647773 0.4253835 0.8954490  0.3208325 0.551038844
## 879  0.637719298  0.419770580 0.4247911 0.8953202  0.3201113 0.550541516
## 771  0.636842105  0.418893387 0.4242003 0.8951911  0.3193914 0.550045086
## 1434 0.635964912  0.418016194 0.4236111 0.8950617  0.3186728 0.549549550
## 149  0.635087719  0.417139001 0.4230236 0.8949320  0.3179556 0.549054905
## 1351 0.634210526  0.416261808 0.4224377 0.8948020  0.3172397 0.548561151
## 290  0.633333333  0.415384615 0.4218534 0.8946716  0.3165250 0.548068284
## 820  0.632456140  0.414507422 0.4212707 0.8945409  0.3158117 0.547576302
## 320  0.631578947  0.413630229 0.4206897 0.8944099  0.3150996 0.547085202
## 1412 0.631578947  0.416194332 0.4214876 0.8955224  0.3170100 0.548387097
## 72   0.631578947  0.418758435 0.4222834 0.8966376  0.3189210 0.549686661
## 937  0.630701754  0.417881242 0.4217033 0.8965087  0.3182120 0.549194991
## 717  0.629824561  0.417004049 0.4211248 0.8963795  0.3175044 0.548704200
## 1249 0.629824561  0.419568151 0.4219178 0.8975000  0.3194178 0.550000000
## 143  0.629824561  0.422132254 0.4227086 0.8986233  0.3213319 0.551293488
## 128  0.629824561  0.424696356 0.4234973 0.8997494  0.3232466 0.552584670
## 737  0.628947368  0.423819163 0.4229195 0.8996236  0.3225431 0.552092609
## 141  0.628070175  0.422941970 0.4223433 0.8994975  0.3218408 0.551601423
## 691  0.628070175  0.425506073 0.4231293 0.9006289  0.3237582 0.552888889
## 54   0.627192982  0.424628880 0.4225543 0.9005038  0.3230581 0.552397869
## 47   0.626315789  0.423751687 0.4219810 0.9003783  0.3223593 0.551907720
## 1057 0.626315789  0.426315789 0.4227642 0.9015152  0.3242794 0.553191489
## 826  0.625438596  0.425438596 0.4221922 0.9013906  0.3235828 0.552701506
## 160  0.624561404  0.424561404 0.4216216 0.9012658  0.3228874 0.552212389
## 1255 0.623684211  0.423684211 0.4210526 0.9011407  0.3221933 0.551724138
## 435  0.622807018  0.422807018 0.4204852 0.9010152  0.3215004 0.551236749
## 1379 0.621929825  0.421929825 0.4199192 0.9008895  0.3208087 0.550750221
## 609  0.621929825  0.424493927 0.4206989 0.9020356  0.3227345 0.552028219
## 711  0.621052632  0.423616734 0.4201342 0.9019108  0.3220451 0.551541850
## 767  0.620175439  0.422739541 0.4195710 0.9017857  0.3213568 0.551056338
## 965  0.620175439  0.425303644 0.4203481 0.9029374  0.3232855 0.552330695
## 399  0.620175439  0.427867746 0.4211230 0.9040921  0.3252151 0.553602812
## 248  0.619298246  0.426990553 0.4205607 0.9039693  0.3245300 0.553116769
## 953  0.618421053  0.426113360 0.4200000 0.9038462  0.3238462 0.552631579
## 158  0.617543860  0.425236167 0.4194407 0.9037227  0.3231635 0.552147239
## 1224 0.616666667  0.424358974 0.4188830 0.9035990  0.3224820 0.551663748
## 1176 0.616666667  0.426923077 0.4196547 0.9047619  0.3244166 0.552930884
## 1058 0.615789474  0.426045884 0.4190981 0.9046392  0.3237373 0.552447552
## 289  0.615789474  0.428609987 0.4198675 0.9058065  0.3256740 0.553711790
## 899  0.614912281  0.427732794 0.4193122 0.9056848  0.3249969 0.553228621
## 643  0.614035088  0.426855601 0.4187583 0.9055627  0.3243210 0.552746295
## 189  0.614035088  0.429419703 0.4195251 0.9067358  0.3262608 0.554006969
## 121  0.613157895  0.428542510 0.4189723 0.9066148  0.3255871 0.553524804
## 105  0.612280702  0.427665317 0.4184211 0.9064935  0.3249146 0.553043478
## 562  0.612280702  0.430229420 0.4191853 0.9076723  0.3268576 0.554300608
## 15   0.611403509  0.429352227 0.4186352 0.9075521  0.3261873 0.553819444
## 192  0.610526316  0.428475034 0.4180865 0.9074316  0.3255181 0.553339115
## 220  0.610526316  0.431039136 0.4188482 0.9086162  0.3274644 0.554592721
## 1266 0.609649123  0.430161943 0.4183007 0.9084967  0.3267974 0.554112554
## 317  0.608771930  0.429284750 0.4177546 0.9083770  0.3261315 0.553633218
## 642  0.607894737  0.428407557 0.4172099 0.9082569  0.3254668 0.553154710
## 770  0.607017544  0.427530364 0.4166667 0.9081365  0.3248031 0.552677029
## 1037 0.606140351  0.426653171 0.4161248 0.9080158  0.3241406 0.552200173
## 191  0.605263158  0.425775978 0.4155844 0.9078947  0.3234792 0.551724138
## 626  0.604385965  0.424898785 0.4150454 0.9077734  0.3228188 0.551248923
## 74   0.604385965  0.427462888 0.4158031 0.9089710  0.3247741 0.552495697
## 88   0.603508772  0.426585695 0.4152652 0.9088507  0.3241159 0.552020636
## 251  0.602631579  0.425708502 0.4147287 0.9087302  0.3234588 0.551546392
## 1310 0.601754386  0.424831309 0.4141935 0.9086093  0.3228028 0.551072961
## 1178 0.601754386  0.427395412 0.4149485 0.9098143  0.3247628 0.552315609
## 453  0.600877193  0.426518219 0.4144144 0.9096946  0.3241090 0.551842331
## 1108 0.600000000  0.425641026 0.4138817 0.9095745  0.3234562 0.551369863
## 663  0.599122807  0.424763833 0.4133504 0.9094541  0.3228045 0.550898204
## 1514 0.598245614  0.423886640 0.4128205 0.9093333  0.3221538 0.550427350
## 133  0.597368421  0.423009447 0.4122919 0.9092123  0.3215042 0.549957301
## 569  0.597368421  0.425573549 0.4130435 0.9104278  0.3234713 0.551194539
## 1    0.597368421  0.428137652 0.4137931 0.9116466  0.3254397 0.552429668
## 664  0.596491228  0.427260459 0.4132653 0.9115282  0.3247935 0.551959114
## 31   0.595614035  0.426383266 0.4127389 0.9114094  0.3241482 0.551489362
## 1132 0.594736842  0.425506073 0.4122137 0.9112903  0.3235041 0.551020408
## 762  0.594736842  0.428070175 0.4129606 0.9125168  0.3254774 0.552251487
## 426  0.593859649  0.427192982 0.4124365 0.9123989  0.3248355 0.551782683
## 743  0.592982456  0.426315789 0.4119138 0.9122807  0.3241945 0.551314673
## 188  0.592105263  0.425438596 0.4113924 0.9121622  0.3235546 0.550847458
## 164  0.591228070  0.424561404 0.4108723 0.9120433  0.3229156 0.550381033
## 262  0.590350877  0.423684211 0.4103535 0.9119241  0.3222777 0.549915398
## 484  0.590350877  0.426248313 0.4110971 0.9131615  0.3242586 0.551141167
## 862  0.589473684  0.425371120 0.4105793 0.9130435  0.3236228 0.550675676
## 1365 0.588596491  0.424493927 0.4100629 0.9129252  0.3229881 0.550210970
## 327  0.587719298  0.423616734 0.4095477 0.9128065  0.3223543 0.549747049
## 701  0.586842105  0.422739541 0.4090339 0.9126876  0.3217215 0.549283909
## 1131 0.585964912  0.421862348 0.4085213 0.9125683  0.3210896 0.548821549
## 497  0.585087719  0.420985155 0.4080100 0.9124487  0.3204587 0.548359966
## 858  0.584210526  0.420107962 0.4075000 0.9123288  0.3198288 0.547899160
## 1467 0.583333333  0.419230769 0.4069913 0.9122085  0.3191998 0.547439127
## 419  0.582456140  0.418353576 0.4064838 0.9120879  0.3185717 0.546979866
## 992  0.581578947  0.417476383 0.4059776 0.9119670  0.3179446 0.546521375
## 712  0.580701754  0.416599190 0.4054726 0.9118457  0.3173184 0.546063652
## 499  0.579824561  0.415721997 0.4049689 0.9117241  0.3166931 0.545606695
## 709  0.578947368  0.414844804 0.4044665 0.9116022  0.3160687 0.545150502
## 199  0.578070175  0.413967611 0.4039653 0.9114799  0.3154452 0.544695071
## 1239 0.577192982  0.413090418 0.4034653 0.9113573  0.3148227 0.544240401
## 107  0.577192982  0.415654521 0.4042027 0.9126214  0.3168241 0.545454545
## 1223 0.576315789  0.414777328 0.4037037 0.9125000  0.3162037 0.545000000
## 1252 0.575438596  0.413900135 0.4032059 0.9123783  0.3155842 0.544546211
## 698  0.574561404  0.413022942 0.4027094 0.9122563  0.3149656 0.544093178
## 1355 0.573684211  0.412145749 0.4022140 0.9121339  0.3143479 0.543640898
## 1086 0.573684211  0.414709852 0.4029484 0.9134078  0.3163562 0.544850498
## 1036 0.572807018  0.413832659 0.4024540 0.9132867  0.3157407 0.544398340
## 488  0.572807018  0.416396761 0.4031863 0.9145658  0.3177521 0.545605307
## 177  0.572807018  0.418960864 0.4039168 0.9158485  0.3197653 0.546810273
## 1203 0.571929825  0.418083671 0.4034230 0.9157303  0.3191533 0.546357616
## 102  0.571052632  0.417206478 0.4029304 0.9156118  0.3185422 0.545905707
## 366  0.570175439  0.416329285 0.4024390 0.9154930  0.3179320 0.545454545
## 357  0.569298246  0.415452092 0.4019488 0.9153738  0.3173226 0.545004129
## 1219 0.568421053  0.414574899 0.4014599 0.9152542  0.3167141 0.544554455
## 580  0.567543860  0.413697706 0.4009721 0.9151344  0.3161064 0.544105523
## 365  0.566666667  0.412820513 0.4004854 0.9150142  0.3154996 0.543657331
## 964  0.566666667  0.415384615 0.4012121 0.9163121  0.3175242 0.544855967
## 16   0.566666667  0.417948718 0.4019370 0.9176136  0.3195507 0.546052632
## 361  0.565789474  0.417071525 0.4014510 0.9174964  0.3189475 0.545603944
## 1307 0.564912281  0.416194332 0.4009662 0.9173789  0.3183451 0.545155993
## 843  0.564912281  0.418758435 0.4016888 0.9186876  0.3203764 0.546349467
## 420  0.564035088  0.417881242 0.4012048 0.9185714  0.3197762 0.545901639
## 255  0.563157895  0.417004049 0.4007220 0.9184549  0.3191770 0.545454545
## 813  0.563157895  0.419568151 0.4014423 0.9197708  0.3212131 0.546644845
## 1071 0.562280702  0.418690958 0.4009604 0.9196557  0.3206161 0.546197874
## 59   0.561403509  0.417813765 0.4004796 0.9195402  0.3200198 0.545751634
## 883  0.561403509  0.420377868 0.4011976 0.9208633  0.3220609 0.546938776
## 734  0.560526316  0.419500675 0.4007177 0.9207493  0.3214670 0.546492659
## 681  0.560526316  0.422064777 0.4014337 0.9220779  0.3235116 0.547677262
## 1246 0.559649123  0.421187584 0.4009547 0.9219653  0.3229200 0.547231270
## 1109 0.558771930  0.420310391 0.4004768 0.9218524  0.3223291 0.546786005
## 1106 0.557894737  0.419433198 0.4000000 0.9217391  0.3217391 0.546341463
## 1026 0.557017544  0.418556005 0.3995244 0.9216255  0.3211499 0.545897644
## 800  0.556140351  0.417678812 0.3990499 0.9215116  0.3205615 0.545454545
## 948  0.555263158  0.416801619 0.3985765 0.9213974  0.3199739 0.545012165
## 1471 0.554385965  0.415924426 0.3981043 0.9212828  0.3193871 0.544570502
## 244  0.553508772  0.415047233 0.3976331 0.9211679  0.3188010 0.544129555
## 476  0.552631579  0.414170040 0.3971631 0.9210526  0.3182158 0.543689320
## 821  0.551754386  0.413292848 0.3966942 0.9209370  0.3176313 0.543249798
## 1287 0.550877193  0.412415655 0.3962264 0.9208211  0.3170475 0.542810985
## 982  0.550000000  0.411538462 0.3957597 0.9207048  0.3164646 0.542372881
## 1064 0.549122807  0.410661269 0.3952941 0.9205882  0.3158824 0.541935484
## 636  0.548245614  0.409784076 0.3948296 0.9204713  0.3153009 0.541498791
## 898  0.547368421  0.408906883 0.3943662 0.9203540  0.3147202 0.541062802
## 430  0.546491228  0.408029690 0.3939039 0.9202363  0.3141402 0.540627514
## 1272 0.545614035  0.407152497 0.3934426 0.9201183  0.3135610 0.540192926
## 1353 0.544736842  0.406275304 0.3929825 0.9200000  0.3129825 0.539759036
## 902  0.543859649  0.405398111 0.3925234 0.9198813  0.3124047 0.539325843
## 1306 0.542982456  0.404520918 0.3920653 0.9197623  0.3118276 0.538893344
## 252  0.542105263  0.403643725 0.3916084 0.9196429  0.3112512 0.538461538
## 373  0.541228070  0.402766532 0.3911525 0.9195231  0.3106756 0.538030424
## 1422 0.541228070  0.405330634 0.3918605 0.9208955  0.3127560 0.539200000
## 233  0.540350877  0.404453441 0.3914053 0.9207773  0.3121826 0.538768985
## 377  0.539473684  0.403576248 0.3909513 0.9206587  0.3116100 0.538338658
## 525  0.538596491  0.402699055 0.3904983 0.9205397  0.3110380 0.537909018
## 944  0.537719298  0.401821862 0.3900463 0.9204204  0.3104667 0.537480064
## 730  0.537719298  0.404385965 0.3907514 0.9218045  0.3125560 0.538645418
## 1350 0.536842105  0.403508772 0.3903002 0.9216867  0.3119870 0.538216561
## 645  0.535964912  0.402631579 0.3898501 0.9215686  0.3114187 0.537788385
## 275  0.535087719  0.401754386 0.3894009 0.9214502  0.3108511 0.537360890
## 1336 0.535087719  0.404318489 0.3901036 0.9228442  0.3129477 0.538522637
## 1038 0.534210526  0.403441296 0.3896552 0.9227273  0.3123824 0.538095238
## 1134 0.533333333  0.402564103 0.3892078 0.9226100  0.3118178 0.537668517
## 135  0.532456140  0.401686910 0.3887615 0.9224924  0.3112539 0.537242472
## 1118 0.531578947  0.400809717 0.3883162 0.9223744  0.3106906 0.536817102
## 1030 0.530701754  0.399932524 0.3878719 0.9222561  0.3101280 0.536392405
## 378  0.529824561  0.399055331 0.3874286 0.9221374  0.3095660 0.535968379
## 485  0.529824561  0.401619433 0.3881279 0.9235474  0.3116753 0.537124803
## 536  0.528947368  0.400742240 0.3876853 0.9234303  0.3111156 0.536700868
## 1220 0.528070175  0.399865047 0.3872437 0.9233129  0.3105566 0.536277603
## 897  0.527192982  0.398987854 0.3868032 0.9231951  0.3099983 0.535855004
## 786  0.526315789  0.398110661 0.3863636 0.9230769  0.3094406 0.535433071
## 162  0.525438596  0.397233468 0.3859251 0.9229584  0.3088835 0.535011802
## 461  0.524561404  0.396356275 0.3854875 0.9228395  0.3083270 0.534591195
## 195  0.523684211  0.395479082 0.3850510 0.9227202  0.3077712 0.534171249
## 539  0.522807018  0.394601889 0.3846154 0.9226006  0.3072160 0.533751962
## 1208 0.522807018  0.397165992 0.3853107 0.9240310  0.3093417 0.534901961
## 629  0.521929825  0.396288799 0.3848758 0.9239130  0.3087889 0.534482759
## 127  0.521052632  0.395411606 0.3844419 0.9237947  0.3082367 0.534064213
## 552  0.520175439  0.394534413 0.3840090 0.9236760  0.3076850 0.533646322
## 412  0.519298246  0.393657220 0.3835771 0.9235569  0.3071340 0.533229085
## 1007 0.518421053  0.392780027 0.3831461 0.9234375  0.3065836 0.532812500
## 4    0.517543860  0.391902834 0.3827160 0.9233177  0.3060337 0.532396565
## 627  0.516666667  0.391025641 0.3822870 0.9231975  0.3054845 0.531981279
## 888  0.515789474  0.390148448 0.3818589 0.9230769  0.3049358 0.531566641
## 922  0.514912281  0.389271255 0.3814318 0.9229560  0.3043877 0.531152648
## 1158 0.514035088  0.388394062 0.3810056 0.9228346  0.3038402 0.530739300
## 1289 0.514035088  0.390958165 0.3816964 0.9242902  0.3059866 0.531881804
## 635  0.513157895  0.390080972 0.3812709 0.9241706  0.3054415 0.531468531
## 588  0.512280702  0.391767881 0.3815350 0.9255151  0.3070501 0.532195500
## 604  0.512280702  0.391767881 0.3815350 0.9255151  0.3070501 0.532195500
## 1398 0.511403509  0.390890688 0.3811111 0.9253968  0.3065079 0.531782946
## 18   0.510526316  0.390013495 0.3806881 0.9252782  0.3059663 0.531371030
## 1477 0.509649123  0.389136302 0.3802661 0.9251592  0.3054253 0.530959752
## 212  0.509649123  0.391700405 0.3809524 0.9266348  0.3075871 0.532095901
## 1301 0.508771930  0.390823212 0.3805310 0.9265176  0.3070485 0.531684699
## 92   0.507894737  0.389946019 0.3801105 0.9264000  0.3065105 0.531274131
## 1173 0.507894737  0.392510121 0.3807947 0.9278846  0.3086793 0.532407407
## 1403 0.507017544  0.391632928 0.3803749 0.9277689  0.3081437 0.531996916
## 1447 0.506140351  0.390755735 0.3799559 0.9276527  0.3076087 0.531587057
## 1521 0.505263158  0.389878543 0.3795380 0.9275362  0.3070742 0.531177829
## 1316 0.504385965  0.389001350 0.3791209 0.9274194  0.3065402 0.530769231
## 544  0.503508772  0.388124157 0.3787047 0.9273021  0.3060068 0.530361261
## 658  0.502631579  0.387246964 0.3782895 0.9271845  0.3054739 0.529953917
## 931  0.502631579  0.389811066 0.3789704 0.9286872  0.3076576 0.531082118
## 1489 0.501754386  0.388933873 0.3785558 0.9285714  0.3071272 0.530674847
## 1472 0.500877193  0.388056680 0.3781421 0.9284553  0.3065974 0.530268199
## 379  0.500000000  0.387179487 0.3777293 0.9283388  0.3060680 0.529862175
## 24   0.500000000  0.389743590 0.3784079 0.9298532  0.3082610 0.530986993
## 292  0.499122807  0.388866397 0.3779956 0.9297386  0.3077342 0.530581040
## 790  0.498245614  0.387989204 0.3775843 0.9296236  0.3072079 0.530175707
## 537  0.497368421  0.387112011 0.3771739 0.9295082  0.3066821 0.529770992
## 1308 0.496491228  0.386234818 0.3767644 0.9293924  0.3061568 0.529366895
## 952  0.495614035  0.385357625 0.3763557 0.9292763  0.3056321 0.528963415
## 1401 0.494736842  0.384480432 0.3759480 0.9291598  0.3051078 0.528560548
## 425  0.493859649  0.383603239 0.3755411 0.9290429  0.3045840 0.528158295
## 1470 0.492982456  0.382726046 0.3751351 0.9289256  0.3040608 0.527756654
## 169  0.492105263  0.381848853 0.3747300 0.9288079  0.3035380 0.527355623
## 1245 0.491228070  0.380971660 0.3743258 0.9286899  0.3030157 0.526955201
## 139  0.490350877  0.380094467 0.3739224 0.9285714  0.3024938 0.526555387
## 638  0.490350877  0.382658570 0.3745963 0.9301165  0.3047128 0.527672479
## 1299 0.490350877  0.385222672 0.3752688 0.9316667  0.3069355 0.528787879
## 1304 0.489473684  0.384345479 0.3748657 0.9315526  0.3064183 0.528387585
## 315  0.488596491  0.383468286 0.3744635 0.9314381  0.3059016 0.527987897
## 874  0.487719298  0.382591093 0.3740622 0.9313233  0.3053854 0.527588813
## 69   0.487719298  0.385155196 0.3747323 0.9328859  0.3076182 0.528700906
## 848  0.487719298  0.387719298 0.3754011 0.9344538  0.3098549 0.529811321
## 1175 0.487719298  0.390283401 0.3760684 0.9360269  0.3120953 0.530920060
## 314  0.486842105  0.389406208 0.3756670 0.9359191  0.3115861 0.530519970
## 348  0.485964912  0.388529015 0.3752665 0.9358108  0.3110773 0.530120482
## 710  0.485087719  0.387651822 0.3748669 0.9357022  0.3105691 0.529721595
## 1393 0.484210526  0.386774629 0.3744681 0.9355932  0.3100613 0.529323308
## 815  0.483333333  0.385897436 0.3740701 0.9354839  0.3095540 0.528925620
## 359  0.482456140  0.385020243 0.3736730 0.9353741  0.3090472 0.528528529
## 1199 0.481578947  0.384143050 0.3732768 0.9352641  0.3085408 0.528132033
## 1469 0.480701754  0.383265857 0.3728814 0.9351536  0.3080349 0.527736132
## 73   0.479824561  0.382388664 0.3724868 0.9350427  0.3075295 0.527340824
## 82   0.478947368  0.381511471 0.3720930 0.9349315  0.3070245 0.526946108
## 1020 0.478070175  0.380634278 0.3717001 0.9348199  0.3065200 0.526551982
## 40   0.477192982  0.379757085 0.3713080 0.9347079  0.3060159 0.526158445
## 890  0.476315789  0.378879892 0.3709168 0.9345955  0.3055123 0.525765497
## 369  0.475438596  0.378002699 0.3705263 0.9344828  0.3050091 0.525373134
## 527  0.474561404  0.377125506 0.3701367 0.9343696  0.3045063 0.524981357
## 1475 0.473684211  0.376248313 0.3697479 0.9342561  0.3040040 0.524590164
## 1402 0.472807018  0.375371120 0.3693599 0.9341421  0.3035020 0.524199553
## 1044 0.471929825  0.374493927 0.3689727 0.9340278  0.3030005 0.523809524
## 254  0.471052632  0.373616734 0.3685864 0.9339130  0.3024994 0.523420074
## 553  0.470175439  0.372739541 0.3682008 0.9337979  0.3019987 0.523031204
## 362  0.469298246  0.371862348 0.3678161 0.9336824  0.3014985 0.522642910
## 532  0.468421053  0.370985155 0.3674322 0.9335664  0.3009986 0.522255193
## 1136 0.467543860  0.370107962 0.3670490 0.9334501  0.3004991 0.521868050
## 1394 0.466666667  0.369230769 0.3666667 0.9333333  0.3000000 0.521481481
## 1444 0.465789474  0.368353576 0.3662851 0.9332162  0.2995013 0.521095485
## 1305 0.464912281  0.367476383 0.3659044 0.9330986  0.2990030 0.520710059
## 1275 0.464035088  0.366599190 0.3655244 0.9329806  0.2985050 0.520325203
## 1216 0.464035088  0.369163293 0.3661826 0.9346290  0.3008115 0.521418021
## 1123 0.463157895  0.368286100 0.3658031 0.9345133  0.3003164 0.521033210
## 311  0.462280702  0.367408907 0.3654244 0.9343972  0.2998216 0.520648968
## 1442 0.461403509  0.366531714 0.3650465 0.9342806  0.2993272 0.520265291
## 1281 0.460526316  0.365654521 0.3646694 0.9341637  0.2988331 0.519882180
## 1066 0.459649123  0.364777328 0.3642931 0.9340463  0.2983394 0.519499632
## 779  0.458771930  0.363900135 0.3639175 0.9339286  0.2978461 0.519117647
## 941  0.457894737  0.363022942 0.3635427 0.9338104  0.2973531 0.518736223
## 547  0.457017544  0.362145749 0.3631687 0.9336918  0.2968605 0.518355360
## 785  0.456140351  0.361268556 0.3627955 0.9335727  0.2963682 0.517975055
## 44   0.455263158  0.360391363 0.3624230 0.9334532  0.2958762 0.517595308
## 431  0.454385965  0.359514170 0.3620513 0.9333333  0.2953846 0.517216117
## 1516 0.453508772  0.358636977 0.3616803 0.9332130  0.2948933 0.516837482
## 1204 0.452631579  0.357759784 0.3613101 0.9330922  0.2944024 0.516459400
## 1035 0.451754386  0.356882591 0.3609407 0.9329710  0.2939117 0.516081871
## 46   0.450877193  0.356005398 0.3605720 0.9328494  0.2934214 0.515704894
## 1221 0.450000000  0.355128205 0.3602041 0.9327273  0.2929314 0.515328467
## 987  0.449122807  0.354251012 0.3598369 0.9326047  0.2924416 0.514952589
## 1085 0.449122807  0.356815115 0.3604888 0.9343066  0.2947954 0.516034985
## 829  0.448245614  0.355937922 0.3601221 0.9341865  0.2943085 0.515659141
## 814  0.447368421  0.355060729 0.3597561 0.9340659  0.2938220 0.515283843
## 393  0.446491228  0.354183536 0.3593909 0.9339450  0.2933358 0.514909091
## 592  0.445614035  0.353306343 0.3590264 0.9338235  0.2928499 0.514534884
## 1271 0.444736842  0.352429150 0.3586626 0.9337017  0.2923643 0.514161220
## 174  0.443859649  0.351551957 0.3582996 0.9335793  0.2918789 0.513788099
## 429  0.442982456  0.350674764 0.3579373 0.9334566  0.2913939 0.513415518
## 842  0.442982456  0.353238866 0.3585859 0.9351852  0.2937710 0.514492754
## 1190 0.442105263  0.352361673 0.3582240 0.9350649  0.2932890 0.514120203
## 179  0.442105263  0.354925776 0.3588710 0.9368030  0.2956739 0.515195369
## 1124 0.441228070  0.354048583 0.3585096 0.9366853  0.2951949 0.514822849
## 433  0.440350877  0.353171390 0.3581489 0.9365672  0.2947161 0.514450867
## 39   0.439473684  0.352294197 0.3577889 0.9364486  0.2942375 0.514079422
## 622  0.438596491  0.351417004 0.3574297 0.9363296  0.2937593 0.513708514
## 1508 0.437719298  0.350539811 0.3570712 0.9362101  0.2932813 0.513338140
## 300  0.437719298  0.353103914 0.3577154 0.9379699  0.2956854 0.514409222
## 870  0.436842105  0.352226721 0.3573574 0.9378531  0.2952105 0.514038877
## 491  0.436842105  0.354790823 0.3580000 0.9396226  0.2976226 0.515107914
## 157  0.436842105  0.357354926 0.3586414 0.9413989  0.3000402 0.516175413
## 670  0.435964912  0.356477733 0.3582834 0.9412879  0.2995713 0.515804598
## 817  0.435087719  0.355600540 0.3579262 0.9411765  0.2991027 0.515434314
## 1354 0.434210526  0.354723347 0.3575697 0.9410646  0.2986344 0.515064562
## 571  0.433333333  0.353846154 0.3572139 0.9409524  0.2981663 0.514695341
## 247  0.432456140  0.352968961 0.3568588 0.9408397  0.2976985 0.514326648
## 130  0.431578947  0.352091768 0.3565045 0.9407266  0.2972310 0.513958482
## 457  0.430701754  0.351214575 0.3561508 0.9406130  0.2967638 0.513590844
## 394  0.430701754  0.353778677 0.3567889 0.9424184  0.2992073 0.514653324
## 256  0.429824561  0.352901484 0.3564356 0.9423077  0.2987433 0.514285714
## 651  0.428947368  0.352024291 0.3560831 0.9421965  0.2982796 0.513918630
## 740  0.428070175  0.351147099 0.3557312 0.9420849  0.2978162 0.513552068
## 1466 0.427192982  0.350269906 0.3553801 0.9419729  0.2973530 0.513186030
## 852  0.427192982  0.352834008 0.3560158 0.9437984  0.2998142 0.514245014
## 261  0.426315789  0.351956815 0.3556650 0.9436893  0.2993543 0.513879004
## 1031 0.425438596  0.351079622 0.3553150 0.9435798  0.2988947 0.513513514
## 1368 0.424561404  0.350202429 0.3549656 0.9434698  0.2984354 0.513148543
## 759  0.424561404  0.352766532 0.3555992 0.9453125  0.3009117 0.514204545
## 472  0.423684211  0.351889339 0.3552502 0.9452055  0.3004557 0.513839603
## 868  0.422807018  0.351012146 0.3549020 0.9450980  0.3000000 0.513475177
## 1063 0.421929825  0.350134953 0.3545544 0.9449902  0.2995445 0.513111269
## 454  0.421052632  0.349257760 0.3542074 0.9448819  0.2990893 0.512747875
## 309  0.421052632  0.351821862 0.3548387 0.9467456  0.3015843 0.513800425
## 272  0.420175439  0.350944669 0.3544922 0.9466403  0.3011325 0.513437058
## 955  0.419298246  0.350067476 0.3541463 0.9465347  0.3006810 0.513074205
## 1488 0.418421053  0.349190283 0.3538012 0.9464286  0.3002297 0.512711864
## 662  0.417543860  0.348313090 0.3534567 0.9463221  0.2997787 0.512350035
## 943  0.416666667  0.347435897 0.3531128 0.9462151  0.2993280 0.511988717
## 612  0.415789474  0.346558704 0.3527697 0.9461078  0.2988775 0.511627907
## 30   0.414912281  0.345681511 0.3524272 0.9460000  0.2984272 0.511267606
## 1525 0.414035088  0.344804318 0.3520854 0.9458918  0.2979771 0.510907811
## 508  0.413157895  0.343927126 0.3517442 0.9457831  0.2975273 0.510548523
## 607  0.413157895  0.346491228 0.3523717 0.9476861  0.3000578 0.511595221
## 1259 0.412280702  0.345614035 0.3520309 0.9475806  0.2996116 0.511235955
## 432  0.411403509  0.344736842 0.3516908 0.9474747  0.2991656 0.510877193
## 1435 0.410526316  0.343859649 0.3513514 0.9473684  0.2987198 0.510518934
## 1468 0.409649123  0.342982456 0.3510125 0.9472617  0.2982742 0.510161177
## 123  0.408771930  0.342105263 0.3506744 0.9471545  0.2978288 0.509803922
## 1303 0.407894737  0.341228070 0.3503369 0.9470468  0.2973837 0.509447166
## 892  0.407017544  0.340350877 0.3500000 0.9469388  0.2969388 0.509090909
## 1425 0.406140351  0.339473684 0.3496638 0.9468303  0.2964941 0.508735150
## 305  0.406140351  0.342037787 0.3502879 0.9487705  0.2990584 0.509776536
## 822  0.405263158  0.341160594 0.3499521 0.9486653  0.2986174 0.509420796
## 680  0.405263158  0.343724696 0.3505747 0.9506173  0.3011920 0.510460251
## 1148 0.404385965  0.342847503 0.3502392 0.9505155  0.3007547 0.510104530
## 1184 0.403508772  0.341970310 0.3499044 0.9504132  0.3003176 0.509749304
## 1450 0.403508772  0.344534413 0.3505253 0.9523810  0.3029063 0.510786360
## 589  0.402631579  0.343657220 0.3501908 0.9522822  0.3024730 0.510431154
## 1240 0.401754386  0.342780027 0.3498570 0.9521830  0.3020400 0.510076442
## 940  0.400877193  0.341902834 0.3495238 0.9520833  0.3016071 0.509722222
## 1524 0.400000000  0.341025641 0.3491912 0.9519833  0.3011745 0.509368494
## 376  0.399122807  0.340148448 0.3488593 0.9518828  0.3007422 0.509015257
## 259  0.398245614  0.339271255 0.3485280 0.9517820  0.3003100 0.508662509
## 1503 0.397368421  0.338394062 0.3481973 0.9516807  0.2998780 0.508310249
## 194  0.396491228  0.337516869 0.3478673 0.9515789  0.2994462 0.507958478
## 1360 0.395614035  0.336639676 0.3475379 0.9514768  0.2990147 0.507607192
## 267  0.395614035  0.339203779 0.3481552 0.9534884  0.3016435 0.508638563
## 556  0.394736842  0.338326586 0.3478261 0.9533898  0.3012159 0.508287293
## 1202 0.393859649  0.337449393 0.3474976 0.9532909  0.3007885 0.507936508
## 824  0.392982456  0.336572200 0.3471698 0.9531915  0.3003613 0.507586207
## 1197 0.392105263  0.335695007 0.3468426 0.9530917  0.2999343 0.507236389
## 116  0.391228070  0.334817814 0.3465160 0.9529915  0.2995075 0.506887052
## 1391 0.390350877  0.333940621 0.3461900 0.9528908  0.2990808 0.506538197
## 456  0.389473684  0.333063428 0.3458647 0.9527897  0.2986544 0.506189821
## 1138 0.388596491  0.332186235 0.3455399 0.9526882  0.2982281 0.505841924
## 1029 0.387719298  0.331309042 0.3452158 0.9525862  0.2978020 0.505494505
## 1213 0.387719298  0.333873144 0.3458294 0.9546436  0.3004731 0.506520247
## 1052 0.387719298  0.336437247 0.3464419 0.9567100  0.3031519 0.507544582
## 516  0.386842105  0.335560054 0.3461179 0.9566161  0.3027339 0.507196710
## 501  0.385964912  0.334682861 0.3457944 0.9565217  0.3023161 0.506849315
## 697  0.385087719  0.333805668 0.3454715 0.9564270  0.3018985 0.506502396
## 860  0.384210526  0.332928475 0.3451493 0.9563319  0.3014811 0.506155951
## 617  0.383333333  0.332051282 0.3448276 0.9562363  0.3010639 0.505809979
## 372  0.382456140  0.331174089 0.3445065 0.9561404  0.3006469 0.505464481
## 650  0.381578947  0.330296896 0.3441860 0.9560440  0.3002300 0.505119454
## 1329 0.381578947  0.332860999 0.3447955 0.9581498  0.3029453 0.506139154
## 797  0.380701754  0.331983806 0.3444754 0.9580574  0.3025328 0.505794138
## 780  0.379824561  0.331106613 0.3441558 0.9579646  0.3021204 0.505449591
## 458  0.378947368  0.330229420 0.3438369 0.9578714  0.3017083 0.505105514
## 1358 0.378070175  0.329352227 0.3435185 0.9577778  0.3012963 0.504761905
## 715  0.377192982  0.328475034 0.3432007 0.9576837  0.3008845 0.504418763
## 542  0.376315789  0.327597841 0.3428835 0.9575893  0.3004728 0.504076087
## 1015 0.375438596  0.326720648 0.3425669 0.9574944  0.3000614 0.503733876
## 722  0.375438596  0.329284750 0.3431734 0.9596413  0.3028147 0.504748982
## 914  0.374561404  0.328407557 0.3428571 0.9595506  0.3024077 0.504406780
## 591  0.373684211  0.327530364 0.3425414 0.9594595  0.3020009 0.504065041
## 599  0.373684211  0.330094467 0.3431463 0.9616253  0.3047716 0.505077861
## 1263 0.372807018  0.329217274 0.3428309 0.9615385  0.3043693 0.504736130
## 788  0.371929825  0.328340081 0.3425161 0.9614512  0.3039673 0.504394861
## 719  0.371052632  0.327462888 0.3422018 0.9613636  0.3035655 0.504054054
## 1198 0.370175439  0.326585695 0.3418882 0.9612756  0.3031638 0.503713707
## 1511 0.369298246  0.325708502 0.3415751 0.9611872  0.3027623 0.503373819
## 1112 0.368421053  0.324831309 0.3412626 0.9610984  0.3023610 0.503034390
## 1144 0.367543860  0.323954116 0.3409506 0.9610092  0.3019598 0.502695418
## 392  0.366666667  0.323076923 0.3406393 0.9609195  0.3015588 0.502356902
## 404  0.365789474  0.322199730 0.3403285 0.9608295  0.3011580 0.502018843
## 567  0.365789474  0.324763833 0.3409298 0.9630485  0.3039783 0.503026227
## 735  0.364912281  0.323886640 0.3406193 0.9629630  0.3035823 0.502688172
## 633  0.364035088  0.323009447 0.3403094 0.9628770  0.3031864 0.502350571
## 1400 0.363157895  0.322132254 0.3400000 0.9627907  0.3027907 0.502013423
## 1135 0.362280702  0.321255061 0.3396912 0.9627040  0.3023952 0.501676727
## 375  0.361403509  0.320377868 0.3393829 0.9626168  0.3019998 0.501340483
## 530  0.360526316  0.319500675 0.3390752 0.9625293  0.3016045 0.501004689
## 77   0.359649123  0.318623482 0.3387681 0.9624413  0.3012094 0.500669344
## 1288 0.359649123  0.321187584 0.3393665 0.9647059  0.3040724 0.501672241
## 546  0.358771930  0.320310391 0.3390597 0.9646226  0.3036823 0.501336898
## 43   0.357894737  0.319433198 0.3387534 0.9645390  0.3032924 0.501002004
## 387  0.357017544  0.318556005 0.3384477 0.9644550  0.3029026 0.500667557
## 518  0.356140351  0.317678812 0.3381425 0.9643705  0.3025130 0.500333556
## 67   0.355263158  0.316801619 0.3378378 0.9642857  0.3021236 0.500000000
## 1115 0.354385965  0.315924426 0.3375338 0.9642005  0.3017342 0.499666889
## 726  0.354385965  0.318488529 0.3381295 0.9665072  0.3046367 0.500665779
## 120  0.353508772  0.317611336 0.3378257 0.9664269  0.3042526 0.500332668
## 754  0.352631579  0.316734143 0.3375224 0.9663462  0.3038686 0.500000000
## 1013 0.351754386  0.315856950 0.3372197 0.9662651  0.3034848 0.499667774
## 1017 0.350877193  0.314979757 0.3369176 0.9661836  0.3031011 0.499335989
## 869  0.350000000  0.314102564 0.3366159 0.9661017  0.3027176 0.499004645
## 947  0.349122807  0.313225371 0.3363148 0.9660194  0.3023343 0.498673740
## 421  0.348245614  0.312348178 0.3360143 0.9659367  0.3019510 0.498343274
## 706  0.347368421  0.311470985 0.3357143 0.9658537  0.3015679 0.498013245
## 1024 0.346491228  0.310593792 0.3354148 0.9657702  0.3011850 0.497683653
## 370  0.345614035  0.309716599 0.3351159 0.9656863  0.3008021 0.497354497
## 321  0.344736842  0.308839406 0.3348175 0.9656020  0.3004194 0.497025777
## 616  0.343859649  0.307962213 0.3345196 0.9655172  0.3000368 0.496697490
## 1185 0.342982456  0.307085020 0.3342222 0.9654321  0.2996543 0.496369637
## 776  0.342105263  0.306207827 0.3339254 0.9653465  0.2992719 0.496042216
## 90   0.341228070  0.305330634 0.3336291 0.9652605  0.2988896 0.495715227
## 1113 0.340350877  0.304453441 0.3333333 0.9651741  0.2985075 0.495388669
## 1513 0.339473684  0.303576248 0.3330381 0.9650873  0.2981254 0.495062541
## 208  0.338596491  0.302699055 0.3327434 0.9650000  0.2977434 0.494736842
## 1041 0.337719298  0.301821862 0.3324492 0.9649123  0.2973614 0.494411571
## 383  0.336842105  0.300944669 0.3321555 0.9648241  0.2969796 0.494086728
## 746  0.335964912  0.300067476 0.3318623 0.9647355  0.2965978 0.493762311
## 1407 0.335087719  0.299190283 0.3315697 0.9646465  0.2962161 0.493438320
## 708  0.334210526  0.298313090 0.3312775 0.9645570  0.2958345 0.493114754
## 1428 0.333333333  0.297435897 0.3309859 0.9644670  0.2954529 0.492791612
## 907  0.332456140  0.296558704 0.3306948 0.9643766  0.2950714 0.492468893
## 509  0.331578947  0.295681511 0.3304042 0.9642857  0.2946899 0.492146597
## 1325 0.330701754  0.294804318 0.3301141 0.9641944  0.2943085 0.491824722
## 1455 0.330701754  0.297368421 0.3307018 0.9666667  0.2973684 0.492810458
## 398  0.330701754  0.299932524 0.3312883 0.9691517  0.3004400 0.493794905
## 1328 0.329824561  0.299055331 0.3309982 0.9690722  0.3000704 0.493472585
## 540  0.328947368  0.298178138 0.3307087 0.9689922  0.2997009 0.493150685
## 781  0.328070175  0.297300945 0.3304196 0.9689119  0.2993315 0.492829205
## 1072 0.327192982  0.296423752 0.3301310 0.9688312  0.2989622 0.492508143
## 999  0.326315789  0.295546559 0.3298429 0.9687500  0.2985929 0.492187500
## 36   0.325438596  0.294669366 0.3295554 0.9686684  0.2982238 0.491867274
## 1280 0.324561404  0.293792173 0.3292683 0.9685864  0.2978547 0.491547464
## 1062 0.323684211  0.292914980 0.3289817 0.9685039  0.2974857 0.491228070
## 995  0.322807018  0.292037787 0.3286957 0.9684211  0.2971167 0.490909091
## 882  0.322807018  0.294601889 0.3292789 0.9709763  0.3002551 0.491888384
## 1139 0.321929825  0.293724696 0.3289931 0.9708995  0.2998925 0.491569390
## 700  0.321052632  0.292847503 0.3287077 0.9708223  0.2995300 0.491250810
## 613  0.320175439  0.291970310 0.3284229 0.9707447  0.2991676 0.490932642
## 1313 0.319298246  0.291093117 0.3281385 0.9706667  0.2988052 0.490614887
## 784  0.318421053  0.290215924 0.3278547 0.9705882  0.2984429 0.490297542
## 1373 0.317543860  0.289338731 0.3275713 0.9705094  0.2980807 0.489980608
## 333  0.316666667  0.288461538 0.3272884 0.9704301  0.2977185 0.489664083
## 1107 0.315789474  0.287584345 0.3270060 0.9703504  0.2973564 0.489347966
## 336  0.314912281  0.286707152 0.3267241 0.9702703  0.2969944 0.489032258
## 618  0.314035088  0.285829960 0.3264427 0.9701897  0.2966324 0.488716957
## 1498 0.313157895  0.284952767 0.3261618 0.9701087  0.2962705 0.488402062
## 1189 0.312280702  0.284075574 0.3258813 0.9700272  0.2959086 0.488087572
## 951  0.311403509  0.283198381 0.3256014 0.9699454  0.2955467 0.487773488
## 388  0.310526316  0.282321188 0.3253219 0.9698630  0.2951849 0.487459807
## 1022 0.309649123  0.281443995 0.3250429 0.9697802  0.2948231 0.487146530
## 1237 0.308771930  0.280566802 0.3247644 0.9696970  0.2944613 0.486833654
## 328  0.307894737  0.279689609 0.3244863 0.9696133  0.2940996 0.486521181
## 1364 0.307017544  0.278812416 0.3242087 0.9695291  0.2937378 0.486209108
## 55   0.306140351  0.277935223 0.3239316 0.9694444  0.2933761 0.485897436
## 1145 0.305263158  0.277058030 0.3236550 0.9693593  0.2930143 0.485586163
## 799  0.304385965  0.276180837 0.3233788 0.9692737  0.2926526 0.485275288
## 713  0.303508772  0.275303644 0.3231032 0.9691877  0.2922908 0.484964811
## 880  0.302631579  0.274426451 0.3228279 0.9691011  0.2919291 0.484654731
## 460  0.301754386  0.273549258 0.3225532 0.9690141  0.2915673 0.484345048
## 584  0.300877193  0.272672065 0.3222789 0.9689266  0.2912055 0.484035760
## 514  0.300000000  0.271794872 0.3220051 0.9688385  0.2908436 0.483726867
## 1151 0.299122807  0.270917679 0.3217317 0.9687500  0.2904817 0.483418367
## 1406 0.298245614  0.270040486 0.3214589 0.9686610  0.2901198 0.483110261
## 1348 0.297368421  0.269163293 0.3211864 0.9685714  0.2897579 0.482802548
## 1429 0.296491228  0.268286100 0.3209145 0.9684814  0.2893959 0.482495226
## 1485 0.295614035  0.267408907 0.3206430 0.9683908  0.2890338 0.482188295
## 535  0.294736842  0.266531714 0.3203719 0.9682997  0.2886716 0.481881755
## 1344 0.293859649  0.265654521 0.3201014 0.9682081  0.2883094 0.481575604
## 1192 0.292982456  0.264777328 0.3198312 0.9681159  0.2879472 0.481269841
## 1427 0.292105263  0.263900135 0.3195616 0.9680233  0.2875848 0.480964467
## 586  0.291228070  0.263022942 0.3192923 0.9679300  0.2872224 0.480659480
## 89   0.290350877  0.262145749 0.3190236 0.9678363  0.2868598 0.480354880
## 1101 0.289473684  0.261268556 0.3187553 0.9677419  0.2864972 0.480050665
## 757  0.288596491  0.260391363 0.3184874 0.9676471  0.2861345 0.479746835
## 963  0.287719298  0.259514170 0.3182200 0.9675516  0.2857716 0.479443390
## 474  0.286842105  0.258636977 0.3179530 0.9674556  0.2854086 0.479140329
## 1009 0.285964912  0.257759784 0.3176865 0.9673591  0.2850456 0.478837650
## 600  0.285964912  0.260323887 0.3182580 0.9702381  0.2884961 0.479797980
## 443  0.285964912  0.262887989 0.3188285 0.9731343  0.2919628 0.480757098
## 545  0.285087719  0.262010796 0.3185619 0.9730539  0.2916158 0.480453972
## 950  0.284210526  0.261133603 0.3182957 0.9729730  0.2912687 0.480151229
## 87   0.283333333  0.260256410 0.3180301 0.9728916  0.2909216 0.479848866
## 695  0.282456140  0.259379217 0.3177648 0.9728097  0.2905745 0.479546885
## 1157 0.281578947  0.258502024 0.3175000 0.9727273  0.2902273 0.479245283
## 50   0.280701754  0.257624831 0.3172356 0.9726444  0.2898800 0.478944060
## 856  0.279824561  0.256747638 0.3169717 0.9725610  0.2895327 0.478643216
## 1487 0.278947368  0.255870445 0.3167082 0.9724771  0.2891853 0.478342750
## 1530 0.278070175  0.254993252 0.3164452 0.9723926  0.2888378 0.478042660
## 245  0.277192982  0.254116059 0.3161826 0.9723077  0.2884903 0.477742947
## 679  0.276315789  0.253238866 0.3159204 0.9722222  0.2881426 0.477443609
## 625  0.275438596  0.252361673 0.3156587 0.9721362  0.2877949 0.477144646
## 325  0.274561404  0.251484480 0.3153974 0.9720497  0.2874470 0.476846058
## 1361 0.273684211  0.250607287 0.3151365 0.9719626  0.2870991 0.476547842
## 958  0.272807018  0.249730094 0.3148760 0.9718750  0.2867510 0.476250000
## 503  0.271929825  0.248852901 0.3146160 0.9717868  0.2864029 0.475952530
## 1129 0.271052632  0.247975709 0.3143564 0.9716981  0.2860545 0.475655431
## 1159 0.270175439  0.247098516 0.3140973 0.9716088  0.2857061 0.475358702
## 417  0.269298246  0.246221323 0.3138386 0.9715190  0.2853575 0.475062344
## 1258 0.268421053  0.245344130 0.3135802 0.9714286  0.2850088 0.474766355
## 1321 0.267543860  0.244466937 0.3133224 0.9713376  0.2846599 0.474470735
## 1241 0.266666667  0.243589744 0.3130649 0.9712460  0.2843109 0.474175482
## 1501 0.265789474  0.242712551 0.3128079 0.9711538  0.2839617 0.473880597
## 960  0.264912281  0.241835358 0.3125513 0.9710611  0.2836124 0.473586078
## 477  0.264035088  0.240958165 0.3122951 0.9709677  0.2832628 0.473291925
## 1349 0.263157895  0.240080972 0.3120393 0.9708738  0.2829131 0.472998138
## 867  0.262280702  0.239203779 0.3117840 0.9707792  0.2825632 0.472704715
## 523  0.261403509  0.238326586 0.3115290 0.9706840  0.2822131 0.472411655
## 1025 0.260526316  0.237449393 0.3112745 0.9705882  0.2818627 0.472118959
## 994  0.259649123  0.236572200 0.3110204 0.9704918  0.2815122 0.471826625
## 312  0.258771930  0.235695007 0.3107667 0.9703947  0.2811615 0.471534653
## 124  0.257894737  0.234817814 0.3105134 0.9702970  0.2808105 0.471243043
## 574  0.257017544  0.233940621 0.3102606 0.9701987  0.2804593 0.470951792
## 979  0.256140351  0.233063428 0.3100081 0.9700997  0.2801078 0.470660902
## 573  0.255263158  0.232186235 0.3097561 0.9700000  0.2797561 0.470370370
## 1083 0.254385965  0.231309042 0.3095045 0.9698997  0.2794041 0.470080197
## 1028 0.253508772  0.230431849 0.3092532 0.9697987  0.2790519 0.469790382
## 778  0.252631579  0.229554656 0.3090024 0.9696970  0.2786994 0.469500924
## 459  0.251754386  0.228677463 0.3087520 0.9695946  0.2783466 0.469211823
## 896  0.250877193  0.227800270 0.3085020 0.9694915  0.2779935 0.468923077
## 94   0.250000000  0.226923077 0.3082524 0.9693878  0.2776402 0.468634686
## 823  0.249122807  0.226045884 0.3080032 0.9692833  0.2772865 0.468346650
## 1293 0.249122807  0.228609987 0.3085622 0.9726027  0.2811649 0.469287469
## 1390 0.248245614  0.227732794 0.3083132 0.9725086  0.2808217 0.468999386
## 396  0.247368421  0.226855601 0.3080645 0.9724138  0.2804783 0.468711656
## 1251 0.246491228  0.225978408 0.3078163 0.9723183  0.2801346 0.468424280
## 818  0.245614035  0.225101215 0.3075684 0.9722222  0.2797907 0.468137255
## 37   0.244736842  0.224224022 0.3073210 0.9721254  0.2794464 0.467850582
## 391  0.243859649  0.223346829 0.3070740 0.9720280  0.2791019 0.467564259
## 741  0.242982456  0.222469636 0.3068273 0.9719298  0.2787571 0.467278287
## 407  0.242105263  0.221592443 0.3065811 0.9718310  0.2784120 0.466992665
## 1236 0.241228070  0.220715250 0.3063352 0.9717314  0.2780667 0.466707392
## 959  0.240350877  0.219838057 0.3060897 0.9716312  0.2777209 0.466422466
## 1267 0.239473684  0.218960864 0.3058447 0.9715302  0.2773749 0.466137889
## 1018 0.238596491  0.218083671 0.3056000 0.9714286  0.2770286 0.465853659
## 1209 0.238596491  0.220647773 0.3061551 0.9749104  0.2810655 0.466788544
## 1392 0.237719298  0.219770580 0.3059105 0.9748201  0.2807307 0.466504263
## 478  0.236842105  0.218893387 0.3056664 0.9747292  0.2803956 0.466220329
## 1059 0.235964912  0.218016194 0.3054226 0.9746377  0.2800603 0.465936740
## 507  0.235087719  0.217139001 0.3051793 0.9745455  0.2797247 0.465653495
## 699  0.234210526  0.216261808 0.3049363 0.9744526  0.2793889 0.465370595
## 1034 0.233333333  0.215384615 0.3046937 0.9743590  0.2790527 0.465088039
## 1326 0.232456140  0.214507422 0.3044515 0.9742647  0.2787162 0.464805825
## 2    0.231578947  0.213630229 0.3042097 0.9741697  0.2783794 0.464523954
## 1279 0.230701754  0.212753036 0.3039683 0.9740741  0.2780423 0.464242424
## 115  0.229824561  0.211875843 0.3037272 0.9739777  0.2777049 0.463961236
## 716  0.228947368  0.210998650 0.3034865 0.9738806  0.2773671 0.463680387
## 1076 0.228070175  0.210121457 0.3032462 0.9737828  0.2770290 0.463399879
## 1386 0.227192982  0.209244265 0.3030063 0.9736842  0.2766905 0.463119710
## 1323 0.226315789  0.208367072 0.3027668 0.9735849  0.2763517 0.462839879
## 917  0.225438596  0.207489879 0.3025276 0.9734848  0.2760125 0.462560386
## 481  0.225438596  0.210053981 0.3030781 0.9771863  0.2802644 0.463488232
## 1484 0.224561404  0.209176788 0.3028391 0.9770992  0.2799384 0.463208685
## 7    0.223684211  0.208299595 0.3026005 0.9770115  0.2796120 0.462929476
## 986  0.222807018  0.207422402 0.3023622 0.9769231  0.2792853 0.462650602
## 232  0.222807018  0.209986505 0.3029111 0.9806950  0.2836061 0.463576159
## 243  0.221929825  0.209109312 0.3026730 0.9806202  0.2832931 0.463297232
## 1153 0.221052632  0.208232119 0.3024352 0.9805447  0.2829799 0.463018641
## 1254 0.220175439  0.207354926 0.3021978 0.9804688  0.2826666 0.462740385
## 1322 0.219298246  0.206477733 0.3019608 0.9803922  0.2823529 0.462462462
## 875  0.218421053  0.205600540 0.3017241 0.9803150  0.2820391 0.462184874
## 363  0.217543860  0.204723347 0.3014879 0.9802372  0.2817250 0.461907618
## 462  0.216666667  0.203846154 0.3012520 0.9801587  0.2814107 0.461630695
## 674  0.215789474  0.202968961 0.3010164 0.9800797  0.2810961 0.461354104
## 1194 0.214912281  0.202091768 0.3007812 0.9800000  0.2807812 0.461077844
## 981  0.214035088  0.201214575 0.3005464 0.9799197  0.2804661 0.460801915
## 533  0.213157895  0.200337382 0.3003120 0.9798387  0.2801507 0.460526316
## 1284 0.212280702  0.199460189 0.3000779 0.9797571  0.2798350 0.460251046
## 1061 0.211403509  0.198582996 0.2998442 0.9796748  0.2795190 0.459976105
## 753  0.210526316  0.197705803 0.2996109 0.9795918  0.2792027 0.459701493
## 1016 0.209649123  0.196828610 0.2993779 0.9795082  0.2788861 0.459427208
## 1116 0.208771930  0.195951417 0.2991453 0.9794239  0.2785692 0.459153250
## 1270 0.207894737  0.195074224 0.2989130 0.9793388  0.2782519 0.458879619
## 342  0.207017544  0.194197031 0.2986811 0.9792531  0.2779343 0.458606313
## 1147 0.206140351  0.193319838 0.2984496 0.9791667  0.2776163 0.458333333
## 358  0.205263158  0.192442645 0.2982184 0.9790795  0.2772979 0.458060678
## 424  0.204385965  0.191565452 0.2979876 0.9789916  0.2769792 0.457788347
## 1478 0.203508772  0.190688259 0.2977572 0.9789030  0.2766601 0.457516340
## 595  0.202631579  0.189811066 0.2975270 0.9788136  0.2763406 0.457244656
## 1181 0.201754386  0.188933873 0.2972973 0.9787234  0.2760207 0.456973294
## 534  0.200877193  0.188056680 0.2970679 0.9786325  0.2757004 0.456702254
## 1119 0.200000000  0.187179487 0.2968389 0.9785408  0.2753796 0.456431535
## 236  0.199122807  0.186302294 0.2966102 0.9784483  0.2750584 0.456161137
## 347  0.198245614  0.185425101 0.2963818 0.9783550  0.2747368 0.455891060
## 769  0.197368421  0.184547908 0.2961538 0.9782609  0.2744147 0.455621302
## 1517 0.196491228  0.183670715 0.2959262 0.9781659  0.2740921 0.455351863
## 1077 0.195614035  0.182793522 0.2956989 0.9780702  0.2737691 0.455082742
## 637  0.194736842  0.181916329 0.2954720 0.9779736  0.2734456 0.454813940
## 467  0.193859649  0.181039136 0.2952454 0.9778761  0.2731215 0.454545455
## 466  0.192982456  0.180161943 0.2950192 0.9777778  0.2727969 0.454277286
## 406  0.192105263  0.179284750 0.2947933 0.9776786  0.2724718 0.454009434
## 904  0.191228070  0.178407557 0.2945677 0.9775785  0.2721462 0.453741897
## 998  0.190350877  0.177530364 0.2943425 0.9774775  0.2718200 0.453474676
## 1492 0.189473684  0.176653171 0.2941176 0.9773756  0.2714932 0.453207769
## 900  0.188596491  0.175775978 0.2938931 0.9772727  0.2711659 0.452941176
## 878  0.187719298  0.174898785 0.2936690 0.9771689  0.2708379 0.452674897
## 352  0.186842105  0.174021592 0.2934451 0.9770642  0.2705093 0.452408931
## 1000 0.185964912  0.173144399 0.2932216 0.9769585  0.2701802 0.452143277
## 354  0.185964912  0.175708502 0.2937595 0.9814815  0.2752410 0.453051643
## 1133 0.185087719  0.174831309 0.2935361 0.9813953  0.2749315 0.452785924
## 1081 0.184210526  0.173954116 0.2933131 0.9813084  0.2746215 0.452520516
## 1399 0.183333333  0.173076923 0.2930904 0.9812207  0.2743110 0.452255419
## 893  0.182456140  0.172199730 0.2928680 0.9811321  0.2740001 0.451990632
## 339  0.181578947  0.171322537 0.2926459 0.9810427  0.2736886 0.451726156
## 942  0.180701754  0.170445344 0.2924242 0.9809524  0.2733766 0.451461988
## 1186 0.179824561  0.169568151 0.2922029 0.9808612  0.2730641 0.451198130
## 877  0.178947368  0.168690958 0.2919818 0.9807692  0.2727511 0.450934579
## 1070 0.178070175  0.167813765 0.2917611 0.9806763  0.2724375 0.450671337
## 656  0.177192982  0.166936572 0.2915408 0.9805825  0.2721233 0.450408401
## 1509 0.176315789  0.166059379 0.2913208 0.9804878  0.2718086 0.450145773
## 310  0.175438596  0.165182186 0.2911011 0.9803922  0.2714932 0.449883450
## 71   0.174561404  0.164304993 0.2908817 0.9802956  0.2711773 0.449621433
## 881  0.173684211  0.163427800 0.2906627 0.9801980  0.2708607 0.449359721
## 1430 0.172807018  0.162550607 0.2904439 0.9800995  0.2705434 0.449098313
## 855  0.171929825  0.161673414 0.2902256 0.9800000  0.2702256 0.448837209
## 936  0.171052632  0.160796221 0.2900075 0.9798995  0.2699070 0.448576409
## 1260 0.170175439  0.159919028 0.2897898 0.9797980  0.2695878 0.448315912
## 25   0.169298246  0.159041835 0.2895724 0.9796954  0.2692678 0.448055717
## 704  0.168421053  0.158164642 0.2893553 0.9795918  0.2689472 0.447795824
## 386  0.167543860  0.157287449 0.2891386 0.9794872  0.2686258 0.447536232
## 410  0.166666667  0.156410256 0.2889222 0.9793814  0.2683036 0.447276941
## 1180 0.165789474  0.155533063 0.2887061 0.9792746  0.2679807 0.447017950
## 1103 0.164912281  0.154655870 0.2884903 0.9791667  0.2676570 0.446759259
## 747  0.164035088  0.153778677 0.2882748 0.9790576  0.2673324 0.446500868
## 1374 0.163157895  0.152901484 0.2880597 0.9789474  0.2670071 0.446242775
## 1382 0.162280702  0.152024291 0.2878449 0.9788360  0.2666809 0.445984980
## 341  0.161403509  0.151147099 0.2876304 0.9787234  0.2663538 0.445727483
## 480  0.161403509  0.153711201 0.2881608 0.9839572  0.2721181 0.446624351
## 374  0.160526316  0.152834008 0.2879464 0.9838710  0.2718174 0.446366782
## 1200 0.159649123  0.151956815 0.2877323 0.9837838  0.2715161 0.446109510
## 752  0.158771930  0.151079622 0.2875186 0.9836957  0.2712142 0.445852535
## 834  0.157894737  0.150202429 0.2873051 0.9836066  0.2709117 0.445595855
## 962  0.157017544  0.149325236 0.2870920 0.9835165  0.2706085 0.445339471
## 471  0.156140351  0.148448043 0.2868792 0.9834254  0.2703046 0.445083381
## 1273 0.155263158  0.147570850 0.2866667 0.9833333  0.2700000 0.444827586
## 570  0.154385965  0.146693657 0.2864545 0.9832402  0.2696947 0.444572085
## 1283 0.153508772  0.145816464 0.2862426 0.9831461  0.2693887 0.444316877
## 450  0.152631579  0.144939271 0.2860310 0.9830508  0.2690819 0.444061962
## 1256 0.151754386  0.144062078 0.2858198 0.9829545  0.2687743 0.443807339
## 1493 0.150877193  0.143184885 0.2856089 0.9828571  0.2684660 0.443553009
## 654  0.150000000  0.142307692 0.2853982 0.9827586  0.2681569 0.443298969
## 385  0.149122807  0.141430499 0.2851879 0.9826590  0.2678469 0.443045220
## 414  0.148245614  0.140553306 0.2849779 0.9825581  0.2675360 0.442791762
## 978  0.147368421  0.139676113 0.2847682 0.9824561  0.2672244 0.442538593
## 756  0.146491228  0.138798920 0.2845588 0.9823529  0.2669118 0.442285714
## 1528 0.145614035  0.137921727 0.2843497 0.9822485  0.2665983 0.442033124
## 702  0.144736842  0.137044534 0.2841410 0.9821429  0.2662838 0.441780822
## 839  0.143859649  0.136167341 0.2839325 0.9820359  0.2659684 0.441528808
## 694  0.142982456  0.135290148 0.2837243 0.9819277  0.2656521 0.441277081
## 176  0.142105263  0.134412955 0.2835165 0.9818182  0.2653347 0.441025641
## 1276 0.141228070  0.133535762 0.2833089 0.9817073  0.2650162 0.440774487
## 1265 0.140350877  0.132658570 0.2831017 0.9815951  0.2646968 0.440523620
## 796  0.139473684  0.131781377 0.2828947 0.9814815  0.2643762 0.440273038
## 614  0.138596491  0.130904184 0.2826881 0.9813665  0.2640546 0.440022740
## 1320 0.137719298  0.130026991 0.2824818 0.9812500  0.2637318 0.439772727
## 1188 0.136842105  0.129149798 0.2822757 0.9811321  0.2634078 0.439522998
## 1262 0.135964912  0.128272605 0.2820700 0.9810127  0.2630826 0.439273553
## 96   0.135087719  0.127395412 0.2818645 0.9808917  0.2627562 0.439024390
## 707  0.134210526  0.126518219 0.2816594 0.9807692  0.2624286 0.438775510
## 455  0.133333333  0.125641026 0.2814545 0.9806452  0.2620997 0.438526912
## 1408 0.132456140  0.124763833 0.2812500 0.9805195  0.2617695 0.438278596
## 198  0.131578947  0.123886640 0.2810458 0.9803922  0.2614379 0.438030560
## 389  0.130701754  0.123009447 0.2808418 0.9802632  0.2611050 0.437782805
## 916  0.129824561  0.122132254 0.2806381 0.9801325  0.2607706 0.437535331
## 513  0.128947368  0.121255061 0.2804348 0.9800000  0.2604348 0.437288136
## 911  0.128070175  0.120377868 0.2802317 0.9798658  0.2600975 0.437041220
## 646  0.127192982  0.119500675 0.2800289 0.9797297  0.2597587 0.436794582
## 215  0.126315789  0.118623482 0.2798265 0.9795918  0.2594183 0.436548223
## 1519 0.125438596  0.117746289 0.2796243 0.9794521  0.2590763 0.436302142
## 961  0.124561404  0.116869096 0.2794224 0.9793103  0.2587327 0.436056338
## 1302 0.123684211  0.115991903 0.2792208 0.9791667  0.2583874 0.435810811
## 110  0.122807018  0.115114710 0.2790195 0.9790210  0.2580404 0.435565560
## 1152 0.121929825  0.114237517 0.2788184 0.9788732  0.2576917 0.435320585
## 1449 0.121052632  0.113360324 0.2786177 0.9787234  0.2573411 0.435075885
## 84   0.120175439  0.112483131 0.2784173 0.9785714  0.2569887 0.434831461
## 795  0.119298246  0.111605938 0.2782171 0.9784173  0.2566344 0.434587310
## 1242 0.118421053  0.110728745 0.2780172 0.9782609  0.2562781 0.434343434
## 1222 0.117543860  0.109851552 0.2778177 0.9781022  0.2559198 0.434099832
## 350  0.116666667  0.108974359 0.2776184 0.9779412  0.2555595 0.433856502
## 1143 0.115789474  0.108097166 0.2774194 0.9777778  0.2551971 0.433613445
## 197  0.114912281  0.107219973 0.2772206 0.9776119  0.2548326 0.433370661
## 1383 0.114035088  0.106342780 0.2770222 0.9774436  0.2544658 0.433128148
## 1227 0.112280702  0.104588394 0.2766262 0.9770992  0.2537254 0.432643935
## 1231 0.112280702  0.104588394 0.2766262 0.9770992  0.2537254 0.432643935
## 6    0.111403509  0.103711201 0.2764286 0.9769231  0.2533516 0.432402235
## 1243 0.110526316  0.102834008 0.2762313 0.9767442  0.2529754 0.432160804
## 53   0.109649123  0.101956815 0.2760342 0.9765625  0.2525967 0.431919643
## 957  0.108771930  0.101079622 0.2758375 0.9763780  0.2522154 0.431678751
## 1312 0.107894737  0.100202429 0.2756410 0.9761905  0.2518315 0.431438127
## 19   0.107017544  0.099325236 0.2754448 0.9760000  0.2514448 0.431197772
## 744  0.106140351  0.098448043 0.2752489 0.9758065  0.2510554 0.430957684
## 1082 0.105263158  0.097570850 0.2750533 0.9756098  0.2506631 0.430717863
## 330  0.104385965  0.096693657 0.2748580 0.9754098  0.2502678 0.430478309
## 923  0.104385965  0.099257760 0.2753726 0.9834711  0.2588437 0.431350750
## 278  0.103508772  0.098380567 0.2751773 0.9833333  0.2585106 0.431111111
## 1384 0.102631579  0.097503374 0.2749823 0.9831933  0.2581756 0.430871738
## 1441 0.101754386  0.096626181 0.2747875 0.9830508  0.2578384 0.430632630
## 1433 0.100877193  0.095748988 0.2745931 0.9829060  0.2574990 0.430393788
## 872  0.100000000  0.094871795 0.2743989 0.9827586  0.2571575 0.430155211
## 449  0.099122807  0.093994602 0.2742049 0.9826087  0.2568136 0.429916898
## 409  0.098245614  0.093117409 0.2740113 0.9824561  0.2564674 0.429678848
## 912  0.097368421  0.092240216 0.2738179 0.9823009  0.2561188 0.429441063
## 554  0.096491228  0.091363023 0.2736248 0.9821429  0.2557677 0.429203540
## 201  0.095614035  0.090485830 0.2734320 0.9819820  0.2554140 0.428966280
## 669  0.094736842  0.089608637 0.2732394 0.9818182  0.2550576 0.428729282
## 919  0.093859649  0.088731444 0.2730471 0.9816514  0.2546985 0.428492546
## 1409 0.092982456  0.087854251 0.2728551 0.9814815  0.2543366 0.428256071
## 475  0.092105263  0.086977058 0.2726634 0.9813084  0.2539718 0.428019857
## 1436 0.091228070  0.086099865 0.2724719 0.9811321  0.2536040 0.427783903
## 334  0.090350877  0.085222672 0.2722807 0.9809524  0.2532331 0.427548209
## 840  0.089473684  0.084345479 0.2720898 0.9807692  0.2528590 0.427312775
## 316  0.088596491  0.083468286 0.2718991 0.9805825  0.2524816 0.427077600
## 1195 0.087719298  0.082591093 0.2717087 0.9803922  0.2521008 0.426842684
## 585  0.086842105  0.081713900 0.2715185 0.9801980  0.2517166 0.426608026
## 1126 0.086842105  0.084278003 0.2720280 0.9900000  0.2620280 0.427472527
## 1426 0.085964912  0.083400810 0.2718379 0.9898990  0.2617369 0.427237781
## 1377 0.085087719  0.082523617 0.2716480 0.9897959  0.2614440 0.427003293
## 1010 0.084210526  0.081646424 0.2714585 0.9896907  0.2611492 0.426769062
## 1098 0.083333333  0.080769231 0.2712692 0.9895833  0.2608525 0.426535088
## 766  0.082456140  0.079892038 0.2710801 0.9894737  0.2605538 0.426301370
## 1527 0.081578947  0.079014845 0.2708914 0.9893617  0.2602531 0.426067908
## 26   0.080701754  0.078137652 0.2707029 0.9892473  0.2599502 0.425834702
## 838  0.079824561  0.077260459 0.2705146 0.9891304  0.2596450 0.425601751
## 1440 0.078947368  0.076383266 0.2703266 0.9890110  0.2593376 0.425369054
## 1102 0.078070175  0.075506073 0.2701389 0.9888889  0.2590278 0.425136612
## 492  0.077192982  0.074628880 0.2699514 0.9887640  0.2587155 0.424904424
## 1512 0.076315789  0.073751687 0.2697642 0.9886364  0.2584006 0.424672489
## 854  0.075438596  0.072874494 0.2695773 0.9885057  0.2580830 0.424440807
## 1043 0.074561404  0.071997301 0.2693906 0.9883721  0.2577627 0.424209378
## 340  0.073684211  0.071120108 0.2692042 0.9882353  0.2574394 0.423978202
## 910  0.072807018  0.070242915 0.2690180 0.9880952  0.2571132 0.423747277
## 678  0.071929825  0.069365722 0.2688321 0.9879518  0.2567839 0.423516603
## 1387 0.071052632  0.068488529 0.2686464 0.9878049  0.2564513 0.423286181
## 1315 0.070175439  0.067611336 0.2684610 0.9876543  0.2561153 0.423056009
## 78   0.069298246  0.066734143 0.2682759 0.9875000  0.2557759 0.422826087
## 1359 0.068421053  0.065856950 0.2680910 0.9873418  0.2554327 0.422596415
## 11   0.067543860  0.064979757 0.2679063 0.9871795  0.2550858 0.422366992
## 1040 0.066666667  0.064102564 0.2677220 0.9870130  0.2547349 0.422137819
## 1515 0.065789474  0.063225371 0.2675378 0.9868421  0.2543799 0.421908894
## 832  0.064912281  0.062348178 0.2673540 0.9866667  0.2540206 0.421680217
## 550  0.064035088  0.061470985 0.2671703 0.9864865  0.2536568 0.421451788
## 83   0.063157895  0.060593792 0.2669870 0.9863014  0.2532883 0.421223606
## 918  0.062280702  0.059716599 0.2668038 0.9861111  0.2529150 0.420995671
## 590  0.061403509  0.058839406 0.2666210 0.9859155  0.2525365 0.420767983
## 1039 0.060526316  0.057962213 0.2664384 0.9857143  0.2521526 0.420540541
## 1507 0.059649123  0.057085020 0.2662560 0.9855072  0.2517632 0.420313344
## 1165 0.058771930  0.056207827 0.2660739 0.9852941  0.2513680 0.420086393
## 1166 0.057894737  0.055330634 0.2658920 0.9850746  0.2509666 0.419859687
## 531  0.057017544  0.054453441 0.2657104 0.9848485  0.2505589 0.419633225
## 515  0.056140351  0.053576248 0.2655290 0.9846154  0.2501444 0.419407008
## 1074 0.055263158  0.052699055 0.2653479 0.9843750  0.2497229 0.419181034
## 279  0.054385965  0.051821862 0.2651670 0.9841270  0.2492940 0.418955304
## 1100 0.053508772  0.050944669 0.2649864 0.9838710  0.2488573 0.418729817
## 582  0.052631579  0.050067476 0.2648060 0.9836066  0.2484125 0.418504572
## 1438 0.051754386  0.049190283 0.2646259 0.9833333  0.2479592 0.418279570
## 1431 0.050877193  0.048313090 0.2644460 0.9830508  0.2474968 0.418054809
## 1146 0.050000000  0.047435897 0.2642663 0.9827586  0.2470249 0.417830290
## 1234 0.049122807  0.046558704 0.2640869 0.9824561  0.2465430 0.417606012
## 1385 0.048245614  0.045681511 0.2639077 0.9821429  0.2460506 0.417381974
## 555  0.047368421  0.044804318 0.2637288 0.9818182  0.2455470 0.417158177
## 714  0.046491228  0.043927126 0.2635501 0.9814815  0.2450316 0.416934620
## 1446 0.045614035  0.043049933 0.2633717 0.9811321  0.2445038 0.416711302
## 384  0.044736842  0.042172740 0.2631935 0.9807692  0.2439627 0.416488223
## 676  0.043859649  0.041295547 0.2630156 0.9803922  0.2434077 0.416265383
## 1523 0.042982456  0.040418354 0.2628378 0.9800000  0.2428378 0.416042781
## 624  0.042105263  0.039541161 0.2626604 0.9795918  0.2422522 0.415820417
## 1343 0.041228070  0.038663968 0.2624831 0.9791667  0.2416498 0.415598291
## 271  0.040350877  0.037786775 0.2623061 0.9787234  0.2410295 0.415376401
## 748  0.039473684  0.036909582 0.2621294 0.9782609  0.2403902 0.415154749
## 980  0.038596491  0.036032389 0.2619529 0.9777778  0.2397306 0.414933333
## 1404 0.037719298  0.035155196 0.2617766 0.9772727  0.2390493 0.414712154
## 733  0.036842105  0.034278003 0.2616005 0.9767442  0.2383447 0.414491209
## 673  0.035964912  0.033400810 0.2614247 0.9761905  0.2376152 0.414270501
## 667  0.035087719  0.032523617 0.2612492 0.9756098  0.2368589 0.414050027
## 346  0.034210526  0.031646424 0.2610738 0.9750000  0.2360738 0.413829787
## 1366 0.033333333  0.030769231 0.2608987 0.9743590  0.2352577 0.413609782
## 1443 0.032456140  0.029892038 0.2607239 0.9736842  0.2344081 0.413390011
## 332  0.031578947  0.029014845 0.2605492 0.9729730  0.2335222 0.413170473
## 1206 0.031578947  0.031578947 0.2610442 1.0000000  0.2610442 0.414012739
## 1196 0.030701754  0.030701754 0.2608696 1.0000000  0.2608696 0.413793103
## 594  0.029824561  0.029824561 0.2606952 1.0000000  0.2606952 0.413573701
## 521  0.028947368  0.028947368 0.2605210 1.0000000  0.2605210 0.413354531
## 551  0.028070175  0.028070175 0.2603471 1.0000000  0.2603471 0.413135593
## 1183 0.027192982  0.027192982 0.2601734 1.0000000  0.2601734 0.412916887
## 1080 0.026315789  0.026315789 0.2600000 1.0000000  0.2600000 0.412698413
## 648  0.025438596  0.025438596 0.2598268 1.0000000  0.2598268 0.412480169
## 885  0.024561404  0.024561404 0.2596538 1.0000000  0.2596538 0.412262156
## 1121 0.023684211  0.023684211 0.2594810 1.0000000  0.2594810 0.412044374
## 1324 0.022807018  0.022807018 0.2593085 1.0000000  0.2593085 0.411826822
## 593  0.021929825  0.021929825 0.2591362 1.0000000  0.2591362 0.411609499
## 915  0.021052632  0.021052632 0.2589641 1.0000000  0.2589641 0.411392405
## 1021 0.020175439  0.020175439 0.2587923 1.0000000  0.2587923 0.411175540
## 1405 0.019298246  0.019298246 0.2586207 1.0000000  0.2586207 0.410958904
## 611  0.018421053  0.018421053 0.2584493 1.0000000  0.2584493 0.410742496
## 777  0.017543860  0.017543860 0.2582781 1.0000000  0.2582781 0.410526316
## 408  0.016666667  0.016666667 0.2581072 1.0000000  0.2581072 0.410310363
## 1346 0.015789474  0.015789474 0.2579365 1.0000000  0.2579365 0.410094637
## 1286 0.014912281  0.014912281 0.2577660 1.0000000  0.2577660 0.409879138
## 302  0.014035088  0.014035088 0.2575958 1.0000000  0.2575958 0.409663866
## 1163 0.013157895  0.013157895 0.2574257 1.0000000  0.2574257 0.409448819
## 631  0.012280702  0.012280702 0.2572559 1.0000000  0.2572559 0.409233998
## 871  0.011403509  0.011403509 0.2570864 1.0000000  0.2570864 0.409019402
## 351  0.010526316  0.010526316 0.2569170 1.0000000  0.2569170 0.408805031
## 1023 0.009649123  0.009649123 0.2567479 1.0000000  0.2567479 0.408590885
## 619  0.008771930  0.008771930 0.2565789 1.0000000  0.2565789 0.408376963
## 1347 0.007894737  0.007894737 0.2564103 1.0000000  0.2564103 0.408163265
## 1357 0.007017544  0.007017544 0.2562418 1.0000000  0.2562418 0.407949791
## 1363 0.006140351  0.006140351 0.2560735 1.0000000  0.2560735 0.407736539
## 677  0.005263158  0.005263158 0.2559055 1.0000000  0.2559055 0.407523511
## 345  0.004385965  0.004385965 0.2557377 1.0000000  0.2557377 0.407310705
## 572  0.003508772  0.003508772 0.2555701 1.0000000  0.2555701 0.407098121
## 1445 0.002631579  0.002631579 0.2554028 1.0000000  0.2554028 0.406885759
## 1529 0.001754386  0.001754386 0.2552356 1.0000000  0.2552356 0.406673618
## 857  0.000877193  0.000877193 0.2550687 1.0000000  0.2550687 0.406461699
## 1120 0.000000000  0.000000000 0.2549020 0.0000000        NaN 0.406250000
##              MCC         FPR           PG           RG
## 825  -0.01495809 0.000877193 0.0000000000 0.0000000000
## 1332  0.02034698 0.000877193 0.1644736842 0.0000000000
## 972   0.04187906 0.000877193 0.3684210526 0.0000000000
## 167   0.05816351 0.000877193 0.4983552632 0.0000000000
## 1456  0.07161952 0.000877193 0.5852631579 0.0000000000
## 114   0.08328019 0.000877193 0.6469298246 0.0000000000
## 20    0.09368628 0.000877193 0.6928034372 0.0000000000
## 1003  0.10315843 0.000877193 0.7282072368 0.0000000000
## 445   0.11190350 0.000877193 0.7563352827 0.0000000000
## 1092  0.12006340 0.000877193 0.7792105263 0.0000000000
## 557   0.12774013 0.000877193 0.7981731187 0.0000000000
## 932   0.13500972 0.000877193 0.8141447368 0.0000000000
## 281   0.14193052 0.000877193 0.8277795079 0.0000000000
## 1458  0.14854840 0.000877193 0.8395542427 0.0000000000
## 27    0.15490019 0.000877193 0.8498245614 0.0000000000
## 360   0.14627298 0.001754386 0.7282072368 0.0000000000
## 1217  0.15261299 0.001754386 0.7430340557 0.0000000000
## 5     0.15872574 0.001754386 0.7563352827 0.0000000000
## 111   0.16463387 0.001754386 0.7683335763 0.0000000000
## 1416  0.17035659 0.001754386 0.7792105263 0.0000000000
## 295   0.17591039 0.001754386 0.7891156463 0.0000000000
## 1411  0.18130951 0.001754386 0.7981731187 0.0000000000
## 845   0.18656634 0.001754386 0.8064869167 0.0000000000
## 34    0.19169176 0.001754386 0.8141447368 0.0000000000
## 849   0.19669536 0.001754386 0.8212210526 0.0000000000
## 1067  0.18998198 0.002631579 0.7476253504 0.0000000000
## 206   0.19497970 0.002631579 0.7563352827 0.0000000000
## 1415  0.19986692 0.002631579 0.7644669710 0.0000000000
## 132   0.20465077 0.002631579 0.7720758496 0.0000000000
## 439   0.20933769 0.002631579 0.7792105263 0.0000000000
## 1170  0.21393347 0.002631579 0.7859137959 0.0000000000
## 297   0.21844338 0.002631579 0.7922234786 0.0000000000
## 1420  0.22287224 0.002631579 0.7981731187 0.0000000000
## 688   0.22722442 0.002631579 0.8037925697 0.0000000000
## 249   0.23150393 0.002631579 0.8091084855 0.0000000000
## 442   0.23571448 0.002631579 0.8141447368 0.0000000000
## 1490  0.23985945 0.002631579 0.8189227634 0.0000000000
## 211   0.24394199 0.002631579 0.8234618749 0.0000000000
## 686   0.24796500 0.002631579 0.8277795079 0.0000000000
## 968   0.25193117 0.002631579 0.8318914474 0.0000000000
## 1369  0.25584302 0.002631579 0.8358120167 0.0000000000
## 91    0.25970287 0.002631579 0.8395542427 0.0000000000
## 1047  0.26351289 0.002631579 0.8431299991 0.0000000000
## 104   0.26727513 0.002631579 0.8465501305 0.0000000000
## 782   0.26211508 0.003508772 0.8024171540 0.0000000000
## 565   0.26588140 0.003508772 0.8064869167 0.0000000000
## 1090  0.26960224 0.003508772 0.8103928903 0.0000000000
## 99    0.27327935 0.003508772 0.8141447368 0.0000000000
## 1451  0.27691436 0.003508772 0.8177513755 0.0000000000
## 801   0.28050882 0.003508772 0.8212210526 0.0000000000
## 487   0.28406416 0.003508772 0.8245614035 0.0000000000
## 620   0.27930487 0.004385965 0.7872060884 0.0000000000
## 306   0.28286172 0.004385965 0.7909913624 0.0000000000
## 1168  0.28638123 0.004385965 0.7946447910 0.0000000000
## 903   0.28180846 0.005263158 0.7604697695 0.0000000000
## 729   0.28532652 0.005263158 0.7644669710 0.0000000000
## 282   0.28089001 0.006140351 0.7326140837 0.0000000000
## 299   0.28440388 0.006140351 0.7368812191 0.0000000000
## 1414  0.28788268 0.006140351 0.7410151348 0.0000000000
## 276   0.28360121 0.007017544 0.7115789474 0.0000000000
## 265   0.28707414 0.007017544 0.7159224317 0.0000000000
## 1339  0.29051369 0.007017544 0.7201380141 0.0000000000
## 1335  0.29392088 0.007017544 0.7242312130 0.0000000000
## 75    0.29729668 0.007017544 0.7282072368 0.0000000000
## 152   0.30064203 0.007017544 0.7320710059 0.0000000000
## 1089  0.30395782 0.007017544 0.7358271712 0.0000000000
## 811   0.30724489 0.007017544 0.7394801327 0.0000000000
## 926   0.31050405 0.007017544 0.7430340557 0.0000000000
## 1049  0.31373610 0.007017544 0.7464928863 0.0000000000
## 444   0.31694176 0.007017544 0.7498603652 0.0000000000
## 1099  0.31299240 0.007894737 0.7246786874 0.0000000000
## 66    0.31619467 0.007894737 0.7282072368 0.0000000000
## 216   0.31937162 0.007894737 0.7316470948 0.0000000000
## 438   0.32252390 0.007894737 0.7350015378 0.0000000000
## 14    0.32565217 0.007894737 0.7382736842 0.0000000000
## 1051  0.32875702 0.007894737 0.7414665039 0.0000000000
## 1291  0.33183906 0.007894737 0.7445828266 0.0000000000
## 109   0.33489884 0.007894737 0.7476253504 0.0000000000
## 62    0.33793691 0.007894737 0.7505966486 0.0000000000
## 605   0.34095380 0.007894737 0.7534991776 0.0000000000
## 80    0.34395001 0.007894737 0.7563352827 0.0000000000
## 1093  0.34692602 0.007894737 0.7591072044 0.0000000000
## 1055  0.34988231 0.007894737 0.7618170844 0.0000000000
## 221   0.35281933 0.007894737 0.7644669710 0.0000000000
## 213   0.35573751 0.007894737 0.7670588235 0.0000000000
## 1337  0.35863729 0.007894737 0.7695945177 0.0000000000
## 1340  0.36151906 0.007894737 0.7720758496 0.0000000000
## 1125  0.36438323 0.007894737 0.7745045400 0.0000000000
## 598   0.36723016 0.007894737 0.7768822384 0.0000000000
## 683   0.37006025 0.007894737 0.7792105263 0.0000000000
## 175   0.37287383 0.007894737 0.7814909209 0.0000000000
## 809   0.37567125 0.007894737 0.7837248781 0.0000000000
## 235   0.37845286 0.007894737 0.7859137959 0.0000000000
## 806   0.38121897 0.007894737 0.7880590169 0.0000000000
## 1253  0.37775521 0.008771930 0.7683335763 0.0000000000
## 1006  0.38052156 0.008771930 0.7705934759 0.0000000000
## 928   0.38327285 0.008771930 0.7728099076 0.0000000000
## 1370  0.38600937 0.008771930 0.7749841075 0.0000000000
## 500   0.38263508 0.009649123 0.7563352827 0.0000000000
## 1212  0.38537138 0.009649123 0.7586078947 0.0000000000
## 97    0.38809332 0.009649123 0.7608387207 0.0000000000
## 720   0.39080118 0.009649123 0.7630288958 0.0000000000
## 159   0.39349524 0.009649123 0.7651795149 0.0000000000
## 52    0.39617574 0.009649123 0.7672916342 0.0000000000
## 727   0.39884296 0.009649123 0.7693662728 0.0000000000
## 479   0.40149713 0.009649123 0.7714044144 0.0000000000
## 285   0.40413848 0.009649123 0.7734070087 0.0000000000
## 217   0.40676727 0.009649123 0.7753749729 0.0000000000
## 395   0.40938371 0.009649123 0.7773091934 0.0000000000
## 353   0.41198803 0.009649123 0.7792105263 0.0000000000
## 830   0.40879875 0.010526316 0.7624851025 0.0000000000
## 51    0.41140330 0.010526316 0.7644669710 0.0005190491
## 966   0.41399602 0.010526316 0.7664161971 0.0014154469
## 313   0.41657712 0.010526316 0.7683335763 0.0023294924
## 705   0.41345854 0.011403509 0.7523908069 0.0023294924
## 606   0.41603958 0.011403509 0.7543787940 0.0032611855
## 1413  0.41860928 0.011403509 0.7563352827 0.0042105263
## 283   0.42116785 0.011403509 0.7582610109 0.0051775148
## 138   0.42371547 0.011403509 0.7601566943 0.0061621509
## 29    0.42625232 0.011403509 0.7620230263 0.0071644348
## 725   0.42877858 0.011403509 0.7638606796 0.0081843662
## 147   0.42575805 0.012280702 0.7489073396 0.0081843662
## 1247  0.42828425 0.012280702 0.7508062244 0.0092219454
## 64    0.43080012 0.012280702 0.7526767621 0.0102771722
## 682   0.43330581 0.012280702 0.7545195789 0.0113500467
## 241   0.43580150 0.012280702 0.7563352827 0.0124405689
## 761   0.43828735 0.012280702 0.7581244636 0.0135487387
## 23    0.44323013 0.012280702 0.7616255349 0.0158180214
## 148   0.44323013 0.012280702 0.7616255349 0.0158180214
## 807   0.44568737 0.012280702 0.7633385238 0.0169791342
## 1269  0.44277540 0.013157895 0.7494165166 0.0169791342
## 284   0.44523273 0.013157895 0.7511825794 0.0181578947
## 804   0.44768088 0.013157895 0.7529240593 0.0193543029
## 1248  0.45012000 0.013157895 0.7546414628 0.0205683588
## 205   0.44726270 0.014035088 0.7412692224 0.0205683588
## 204   0.44970174 0.014035088 0.7430340557 0.0218000623
## 934   0.45213196 0.014035088 0.7447751191 0.0230494135
## 560   0.45455347 0.014035088 0.7464928863 0.0243164123
## 301   0.45696641 0.014035088 0.7481878185 0.0256010589
## 1048  0.45937091 0.014035088 0.7498603652 0.0269033531
## 1421  0.46176709 0.014035088 0.7515109639 0.0282232949
## 1464  0.45898653 0.014912281 0.7388428048 0.0282232949
## 1046  0.46138268 0.014912281 0.7405355042 0.0295608845
## 563   0.46377069 0.014912281 0.7422065363 0.0309161217
## 416   0.46103035 0.015789474 0.7299380437 0.0309161217
## 1097  0.46341815 0.015789474 0.7316470948 0.0322890065
## 772   0.46070894 0.016666667 0.7197001249 0.0322890065
## 511   0.45802266 0.017543860 0.7080081504 0.0322890065
## 210   0.46041736 0.017543860 0.7098044422 0.0336795391
## 971   0.46280411 0.017543860 0.7115789474 0.0350877193
## 266   0.46015455 0.018421053 0.7002347542 0.0350877193
## 193   0.45752676 0.019298246 0.6891265126 0.0350877193
## 639   0.45991952 0.019298246 0.6909758055 0.0365135472
## 578   0.45731979 0.020175439 0.6801415434 0.0365135472
## 57    0.45971133 0.020175439 0.6820132537 0.0379570227
## 486   0.46209512 0.020175439 0.6838634122 0.0394181460
## 1388  0.45952906 0.021052632 0.6733336038 0.0394181460
## 413   0.45698321 0.021929825 0.6630147412 0.0394181460
## 724   0.45937186 0.021929825 0.6649241473 0.0408969168
## 1094  0.46175291 0.021929825 0.6668122944 0.0423933354
## 841   0.46412646 0.021929825 0.6686795303 0.0439074016
## 1418  0.46649262 0.021929825 0.6705261955 0.0454391155
## 68    0.46885148 0.021929825 0.6723526231 0.0469884771
## 803   0.47120313 0.021929825 0.6741591393 0.0485554863
## 1149  0.46871267 0.022807018 0.6642656227 0.0485554863
## 738   0.46624083 0.023684211 0.6545608560 0.0485554863
## 1330  0.46859684 0.023684211 0.6564180180 0.0501401433
## 1268  0.46614886 0.024561404 0.6469298246 0.0501401433
## 1156  0.46371882 0.025438596 0.6376195732 0.0501401433
## 33    0.46607859 0.025438596 0.6395201238 0.0517424478
## 495   0.46367142 0.026315789 0.6304125966 0.0517424478
## 760   0.46602934 0.026315789 0.6323225926 0.0533624001
## 250   0.46838031 0.026315789 0.6342132521 0.0550000000
## 866   0.46600049 0.027192982 0.6253285562 0.0550000000
## 755   0.46363745 0.028070175 0.6166049409 0.0550000000
## 436   0.46599142 0.028070175 0.6185297956 0.0566552476
## 161   0.46833858 0.028070175 0.6204357490 0.0583281428
## 793   0.46600156 0.028947368 0.6119185177 0.0583281428
## 876   0.46368062 0.029824561 0.6035523564 0.0583281428
## 884   0.46603035 0.029824561 0.6054873294 0.0600186858
## 661   0.46372973 0.030701754 0.5972907453 0.0600186858
## 304   0.46607724 0.030701754 0.5992292121 0.0617268764
## 1314  0.46379650 0.031578947 0.5911964809 0.0617268764
## 668   0.46153095 0.032456140 0.5833025010 0.0617268764
## 329   0.45928040 0.033333333 0.5755441928 0.0617268764
## 482   0.46163400 0.033333333 0.5775234131 0.0634527146
## 324   0.45940227 0.034210526 0.5699153084 0.0634527146
## 1174  0.46175331 0.034210526 0.5718941352 0.0651962006
## 1376  0.45953999 0.035087719 0.5644313606 0.0651962006
## 440   0.46188843 0.035087719 0.5664090975 0.0669573342
## 400   0.46423046 0.035087719 0.5683694035 0.0687361154
## 465   0.46203895 0.035964912 0.5610629968 0.0687361154
## 1297  0.46437842 0.035964912 0.5630218261 0.0705325444
## 452   0.46220445 0.036842105 0.5558507812 0.0705325444
## 296   0.46454132 0.036842105 0.5578075366 0.0723466210
## 538   0.46238453 0.037719298 0.5507676352 0.0723466210
## 225   0.46471879 0.037719298 0.5527217642 0.0741783453
## 1338  0.46704691 0.037719298 0.5546594332 0.0760277172
## 721   0.46936896 0.037719298 0.5565808413 0.0778947368
## 1505  0.46723598 0.038596491 0.5496947368 0.0778947368
## 1177  0.46955552 0.038596491 0.5516134958 0.0797794041
## 566   0.47186913 0.038596491 0.5535164251 0.0816817191
## 983   0.46975585 0.039473684 0.5467648227 0.0816817191
## 1172  0.47206699 0.039473684 0.5486648607 0.0836016817
## 1311  0.46996961 0.040350877 0.5420307461 0.0836016817
## 228   0.47227826 0.040350877 0.5439274499 0.0855392920
## 996   0.47019646 0.041228070 0.5374073706 0.0855392920
## 196   0.47250260 0.041228070 0.5393003299 0.0874945500
## 644   0.47043609 0.042105263 0.5328909715 0.0874945500
## 224   0.46838148 0.042982456 0.5265789474 0.0874945500
## 1319  0.46633864 0.043859649 0.5203623600 0.0874945500
## 621   0.46430744 0.044736842 0.5142393575 0.0874945500
## 602   0.46662009 0.044736842 0.5161569864 0.0894674556
## 909   0.46460326 0.045614035 0.5101341878 0.0894674556
## 112   0.46259773 0.046491228 0.5042008483 0.0894674556
## 1460  0.46491043 0.046491228 0.5061203839 0.0914580089
## 925   0.46721758 0.046491228 0.5080256759 0.0934662099
## 258   0.46951923 0.046491228 0.5099168730 0.0954920585
## 846   0.47181545 0.046491228 0.5117941222 0.0975355549
## 230   0.47410629 0.046491228 0.5136575685 0.0995966988
## 1334  0.47639182 0.046491228 0.5155073552 0.1016754905
## 269   0.47441389 0.047368421 0.5097074315 0.1016754905
## 1127  0.47669690 0.047368421 0.5115515568 0.1037719298
## 528   0.47473232 0.048245614 0.5058420675 0.1037719298
## 253   0.47701281 0.048245614 0.5076803119 0.1058860168
## 1210  0.47928816 0.048245614 0.5095054429 0.1080177515
## 1001  0.47733931 0.049122807 0.5038910128 0.1080177515
## 223   0.47540072 0.050000000 0.4983552632 0.1080177515
## 812   0.47767617 0.050000000 0.5001811560 0.1101671338
## 1432  0.47575024 0.050877193 0.4947288827 0.1101671338
## 1482  0.47383430 0.051754386 0.4893520697 0.1101671338
## 850   0.47610968 0.051754386 0.4911773852 0.1123341638
## 1461  0.47838009 0.051754386 0.4929902442 0.1145188415
## 684   0.48064557 0.051754386 0.4947907655 0.1167211668
## 1091  0.48290619 0.051754386 0.4965790665 0.1189411398
## 136   0.48516199 0.051754386 0.4983552632 0.1211787605
## 703   0.48326795 0.052631579 0.4930805623 0.1211787605
## 1238  0.48138343 0.053508772 0.4878767296 0.1211787605
## 889   0.47950834 0.054385965 0.4827425438 0.1211787605
## 1292  0.48176645 0.054385965 0.4845230263 0.1234340289
## 8     0.47990293 0.055263158 0.4794619855 0.1234340289
## 969   0.48215860 0.055263158 0.4812355534 0.1257069449
## 49    0.48030648 0.056140351 0.4762458654 0.1257069449
## 660   0.47846341 0.057017544 0.4713216417 0.1257069449
## 240   0.47662928 0.057894737 0.4664617813 0.1257069449
## 561   0.47888680 0.057894737 0.4682363255 0.1279975086
## 970   0.48113972 0.057894737 0.4699996808 0.1303057199
## 1111  0.47931862 0.058771930 0.4652102217 0.1303057199
## 1087  0.48156908 0.058771930 0.4669661525 0.1326315789
## 1005  0.48381503 0.058771930 0.4687111579 0.1349750856
## 690   0.48605652 0.058771930 0.4704453313 0.1373362400
## 1481  0.48425025 0.059649123 0.4657278116 0.1373362400
## 1352  0.48245246 0.060526316 0.4610700304 0.1373362400
## 933   0.48469361 0.060526316 0.4628003335 0.1397150420
## 524   0.48290618 0.061403509 0.4582043344 0.1397150420
## 1004  0.48514495 0.061403509 0.4599272075 0.1421114917
## 101   0.48336773 0.062280702 0.4553915713 0.1421114917
## 32    0.48560412 0.062280702 0.4571069711 0.1445255891
## 1215  0.48783625 0.062280702 0.4588121666 0.1469573342
## 1214  0.49006416 0.062280702 0.4605072407 0.1494067269
## 170   0.48830081 0.063157895 0.4560360473 0.1494067269
## 939   0.48654541 0.064035088 0.4516195689 0.1494067269
## 548   0.48479790 0.064912281 0.4472569473 0.1494067269
## 894   0.48305820 0.065789474 0.4429473412 0.1494067269
## 1095  0.48528936 0.065789474 0.4446422214 0.1518737673
## 163   0.48751640 0.065789474 0.4463274084 0.1543584553
## 226   0.48578798 0.066666667 0.4420738122 0.1543584553
## 517   0.48406714 0.067543860 0.4378711558 0.1543584553
## 337   0.48235384 0.068421053 0.4337186577 0.1543584553
## 993   0.48064798 0.069298246 0.4296155512 0.1543584553
## 280   0.47894951 0.070175439 0.4255610841 0.1543584553
## 294   0.48118103 0.070175439 0.4272445820 0.1568607910
## 689   0.48340852 0.070175439 0.4289188737 0.1593807744
## 145   0.48172060 0.071052632 0.4249143324 0.1593807744
## 100   0.48003986 0.071929825 0.4209565898 0.1593807744
## 1187  0.47836625 0.072807018 0.4170449458 0.1593807744
## 1389  0.47669969 0.073684211 0.4131787131 0.1593807744
## 758   0.47504012 0.074561404 0.4093572170 0.1593807744
## 129   0.47338749 0.075438596 0.4055797953 0.1593807744
## 687   0.47562030 0.075438596 0.4072489259 0.1619184055
## 847   0.47784920 0.075438596 0.4089093950 0.1644736842
## 427   0.47620633 0.076315789 0.4051755974 0.1644736842
## 287   0.47843281 0.076315789 0.4068276674 0.1670466106
## 242   0.47679812 0.077192982 0.4031363869 0.1670466106
## 929   0.47902222 0.077192982 0.4047800943 0.1696371847
## 151   0.48124253 0.077192982 0.4064154469 0.1722454064
## 623   0.47961733 0.078070175 0.4027658592 0.1722454064
## 665   0.47799868 0.078947368 0.3991570724 0.1722454064
## 984   0.47638652 0.079824561 0.3955885031 0.1722454064
## 997   0.47478081 0.080701754 0.3920595782 0.1722454064
## 764   0.47318147 0.081578947 0.3885697345 0.1722454064
## 641   0.47540488 0.081578947 0.3901958376 0.1748712758
## 1073  0.47381316 0.082456140 0.3867439219 0.1748712758
## 273   0.47222770 0.083333333 0.3833298626 0.1748712758
## 182   0.47445000 0.083333333 0.3849468544 0.1775147929
## 469   0.47287198 0.084210526 0.3815693361 0.1775147929
## 119   0.47509189 0.084210526 0.3831778712 0.1801759576
## 415   0.47352123 0.085087719 0.3798361975 0.1801759576
## 3     0.47195661 0.085964912 0.3765305816 0.1801759576
## 819   0.47039799 0.086842105 0.3732605263 0.1801759576
## 423   0.46884530 0.087719298 0.3700255429 0.1801759576
## 1105  0.46729851 0.088596491 0.3668251508 0.1801759576
## 150   0.46575757 0.089473684 0.3636588776 0.1801759576
## 401   0.46422242 0.090350877 0.3605262588 0.1801759576
## 693   0.46269301 0.091228070 0.3574268377 0.1801759576
## 895   0.46116930 0.092105263 0.3543601651 0.1801759576
## 608   0.46339601 0.092105263 0.3559501678 0.1828547701
## 113   0.46561921 0.092105263 0.3575331666 0.1855512301
## 355   0.46783894 0.092105263 0.3591091973 0.1882653379
## 975   0.47005524 0.092105263 0.3606782956 0.1909970933
## 298   0.47226812 0.092105263 0.3622404975 0.1937464964
## 543   0.47075539 0.092982456 0.3591981989 0.1937464964
## 367   0.46924816 0.093859649 0.3561873224 0.1937464964
## 219   0.47145982 0.093859649 0.3577397717 0.1965135472
## 1423  0.47366816 0.093859649 0.3592855154 0.1992982456
## 1141  0.47216849 0.094736842 0.3563025494 0.1992982456
## 692   0.47437458 0.094736842 0.3578401616 0.2021005917
## 380   0.47288133 0.095614035 0.3548860805 0.2021005917
## 1278  0.47139341 0.096491228 0.3519619501 0.2021005917
## 1367  0.46991076 0.097368421 0.3490673828 0.2021005917
## 1296  0.47211668 0.097368421 0.3505937085 0.2049205855
## 28    0.47064026 0.098245614 0.3477265944 0.2049205855
## 1462  0.47284397 0.098245614 0.3492448736 0.2077582269
## 303   0.47504451 0.098245614 0.3507568647 0.2106135160
## 805   0.47724190 0.098245614 0.3522625973 0.2134864528
## 1396  0.47577363 0.099122807 0.3494191390 0.2134864528
## 905   0.47431044 0.100000000 0.3466038212 0.2134864528
## 1117  0.47285229 0.100877193 0.3438162885 0.2134864528
## 1014  0.47139915 0.101754386 0.3410561909 0.2134864528
## 1053  0.47359734 0.101754386 0.3425489343 0.2163770373
## 38    0.47215011 0.102631579 0.3398140618 0.2163770373
## 172   0.47070779 0.103508772 0.3371058744 0.2163770373
## 596   0.46927035 0.104385965 0.3344240400 0.2163770373
## 935   0.47146826 0.104385965 0.3359051673 0.2192852694
## 117   0.47366315 0.104385965 0.3373804974 0.2222111492
## 827   0.47223235 0.105263158 0.3347207304 0.2222111492
## 749   0.47080632 0.106140351 0.3320865451 0.2222111492
## 1480  0.46938502 0.107017544 0.3294776278 0.2222111492
## 153   0.47157962 0.107017544 0.3309413011 0.2251546766
## 274   0.47016388 0.107894737 0.3283552632 0.2251546766
## 1331  0.47235642 0.107894737 0.3298113146 0.2281158518
## 1079  0.47094619 0.108771930 0.3272477901 0.2281158518
## 137   0.46954057 0.109649123 0.3247085107 0.2281158518
## 1218  0.47173191 0.109649123 0.3261549184 0.2310946746
## 837   0.47033169 0.110526316 0.3236374490 0.2310946746
## 1054  0.47252102 0.110526316 0.3250763649 0.2340911450
## 675   0.47112615 0.111403509 0.3225803632 0.2340911450
## 568   0.47331348 0.111403509 0.3240118541 0.2371052632
## 126   0.47192390 0.112280702 0.3215369850 0.2371052632
## 470   0.47053875 0.113157895 0.3190850698 0.2371052632
## 422   0.46915799 0.114035088 0.3166558371 0.2371052632
## 1032  0.46778159 0.114912281 0.3142490196 0.2371052632
## 1300  0.46996937 0.114912281 0.3156665629 0.2401370290
## 17    0.47215441 0.114912281 0.3170790557 0.2431864424
## 257   0.47433672 0.114912281 0.3184865158 0.2462535036
## 657   0.47296701 0.115789474 0.3160951236 0.2462535036
## 187   0.47160156 0.116666667 0.3137254902 0.2462535036
## 1069  0.47024033 0.117543860 0.3113773635 0.2462535036
## 185   0.46888331 0.118421053 0.3090504950 0.2462535036
## 464   0.46753045 0.119298246 0.3067446394 0.2462535036
## 775   0.46618174 0.120175439 0.3044595551 0.2462535036
## 1027  0.46483714 0.121052632 0.3021950040 0.2462535036
## 924   0.46702209 0.121052632 0.3035815069 0.2493382124
## 483   0.46920443 0.121052632 0.3049633276 0.2524405689
## 1110  0.46786534 0.121929825 0.3027142448 0.2524405689
## 118   0.46653029 0.122807018 0.3004851554 0.2524405689
## 798   0.46519923 0.123684211 0.2982758331 0.2524405689
## 581   0.46387215 0.124561404 0.2960860549 0.2524405689
## 1226  0.46254902 0.125438596 0.2939156007 0.2524405689
## 1437  0.46122980 0.126315789 0.2917642536 0.2524405689
## 579   0.45991447 0.127192982 0.2896317996 0.2524405689
## 816   0.45860300 0.128070175 0.2875180276 0.2524405689
## 541   0.45729537 0.128947368 0.2854227296 0.2524405689
## 390   0.45599155 0.129824561 0.2833457002 0.2524405689
## 181   0.45817810 0.129824561 0.2846978246 0.2555605730
## 810   0.46036213 0.129824561 0.2860457220 0.2586982249
## 202   0.45906335 0.130701754 0.2839814535 0.2586982249
## 1078  0.45776831 0.131578947 0.2819349962 0.2586982249
## 976   0.45995113 0.131578947 0.2832734680 0.2618535243
## 1142  0.45866042 0.132456140 0.2812419813 0.2618535243
## 323   0.45737338 0.133333333 0.2792278918 0.2618535243
## 886   0.45609000 0.134210526 0.2772310099 0.2618535243
## 1207  0.45827223 0.134210526 0.2785574637 0.2650264715
## 418   0.45699307 0.135087719 0.2765749212 0.2650264715
## 512   0.45571750 0.135964912 0.2746091912 0.2650264715
## 789   0.45444550 0.136842105 0.2726600926 0.2650264715
## 308   0.45317705 0.137719298 0.2707274466 0.2650264715
## 1473  0.45191211 0.138596491 0.2688110767 0.2650264715
## 792   0.45065068 0.139473684 0.2669108090 0.2650264715
## 891   0.44939271 0.140350877 0.2650264715 0.2650264715
## 564   0.45157660 0.140350877 0.2663299525 0.2682170663
## 338   0.45032263 0.141228070 0.2644585795 0.2682170663
## 468   0.44907208 0.142105263 0.2626027805 0.2682170663
## 851   0.45125473 0.142105263 0.2638970071 0.2714253088
## 967   0.45343508 0.142105263 0.2651875965 0.2746511990
## 293   0.45218901 0.142982456 0.2633416502 0.2746511990
## 990   0.45094630 0.143859649 0.2615109143 0.2746511990
## 364   0.44970692 0.144736842 0.2596952297 0.2746511990
## 945   0.44847085 0.145614035 0.2578944393 0.2746511990
## 1042  0.44723807 0.146491228 0.2561083882 0.2746511990
## 307   0.44941883 0.146491228 0.2573815494 0.2778947368
## 1491  0.44818984 0.147368421 0.2556072739 0.2778947368
## 526   0.44696408 0.148245614 0.2538474177 0.2778947368
## 131   0.44574155 0.149122807 0.2521018321 0.2778947368
## 946   0.44452222 0.150000000 0.2503703704 0.2778947368
## 322   0.44330606 0.150877193 0.2486528875 0.2778947368
## 1169  0.44548712 0.150877193 0.2499085733 0.2811559224
## 628   0.44427460 0.151754386 0.2482020769 0.2811559224
## 22    0.44645399 0.151754386 0.2494516790 0.2844347555
## 988   0.44524509 0.152631579 0.2477560349 0.2844347555
## 1104  0.44403929 0.153508772 0.2460739199 0.2844347555
## 520   0.44283657 0.154385965 0.2444051972 0.2844347555
## 603   0.44501527 0.154385965 0.2456431430 0.2877312364
## 122   0.44381609 0.155263158 0.2439848440 0.2877312364
## 973   0.44599317 0.155263158 0.2452168598 0.2910453649
## 559   0.44816817 0.155263158 0.2464457809 0.2943771411
## 263   0.44697298 0.156140351 0.2447950008 0.2943771411
## 718   0.44578078 0.157017544 0.2431571778 0.2943771411
## 41    0.44459158 0.157894737 0.2415321830 0.2943771411
## 1453  0.44676597 0.157894737 0.2427497315 0.2977265649
## 808   0.44893835 0.157894737 0.2439642841 0.3010936365
## 344   0.44775305 0.158771930 0.2423464563 0.3010936365
## 1171  0.44992391 0.158771930 0.2435552944 0.3044783557
## 218   0.45209280 0.158771930 0.2447611706 0.3078807225
## 1417  0.45425974 0.158771930 0.2459640867 0.3113007370
## 227   0.45307882 0.159649123 0.2443507101 0.3113007370
## 1410  0.45190080 0.160526316 0.2427497315 0.3113007370
## 237   0.45072566 0.161403509 0.2411610299 0.3113007370
## 750   0.44955338 0.162280702 0.2395844862 0.3113007370
## 1424  0.44838395 0.163157895 0.2380199824 0.3113007370
## 184   0.44721734 0.164035088 0.2364674019 0.3113007370
## 264   0.44938523 0.164035088 0.2376513598 0.3147383993
## 1114  0.44822189 0.164912281 0.2361078868 0.3147383993
## 1008  0.44706134 0.165789474 0.2345760995 0.3147383993
## 335   0.44590356 0.166666667 0.2330558859 0.3147383993
## 498   0.44474853 0.167543860 0.2315471352 0.3147383993
## 1497  0.44359624 0.168421053 0.2300497380 0.3147383993
## 42    0.44576453 0.168421053 0.2312174695 0.3181937091
## 1012  0.44461539 0.169298246 0.2297286041 0.3181937091
## 685   0.44678230 0.169298246 0.2308910124 0.3216666667
## 634   0.44563631 0.170175439 0.2294105851 0.3216666667
## 125   0.44449298 0.171052632 0.2279411765 0.3216666667
## 1155  0.44335232 0.171929825 0.2264826827 0.3216666667
## 86    0.44221430 0.172807018 0.2250350012 0.3216666667
## 288   0.44438117 0.172807018 0.2261840942 0.3251572719
## 1068  0.44324621 0.173684211 0.2247444306 0.3251572719
## 1454  0.44541175 0.173684211 0.2258883550 0.3286655248
## 203   0.44427982 0.174561404 0.2244566232 0.3286655248
## 200   0.44644408 0.174561404 0.2255954244 0.3321914253
## 61    0.44531516 0.175438596 0.2241715400 0.3321914253
## 286   0.44747814 0.175438596 0.2253052630 0.3357349735
## 402   0.44635223 0.176315789 0.2238891425 0.3357349735
## 1526  0.44522885 0.177192982 0.2224833168 0.3357349735
## 1033  0.44410801 0.178070175 0.2210876910 0.3357349735
## 56    0.44627061 0.178070175 0.2222111492 0.3392961694
## 783   0.44515271 0.178947368 0.2208230063 0.3392961694
## 655   0.44403730 0.179824561 0.2194448722 0.3392961694
## 773   0.44292438 0.180701754 0.2180766556 0.3392961694
## 1285  0.44181392 0.181578947 0.2167182663 0.3392961694
## 1128  0.44397657 0.181578947 0.2178289474 0.3428750130
## 331   0.44286898 0.182456140 0.2164776781 0.3428750130
## 938   0.44176381 0.183333333 0.2151360544 0.3428750130
## 1088  0.44392570 0.183333333 0.2162392883 0.3464715042
## 1225  0.44282337 0.184210526 0.2149046209 0.3464715042
## 1486  0.44172343 0.185087719 0.2135794220 0.3464715042
## 1150  0.44062588 0.185964912 0.2122636068 0.3464715042
## 183   0.43953071 0.186842105 0.2109570912 0.3464715042
## 437   0.44169267 0.186842105 0.2120477785 0.3500856431
## 731   0.44385309 0.186842105 0.2131363479 0.3537174297
## 1075  0.44276108 0.187719298 0.2118338853 0.3537174297
## 10    0.44167141 0.188596491 0.2105405507 0.3537174297
## 1264  0.44058407 0.189473684 0.2092562633 0.3537174297
## 12    0.43949903 0.190350877 0.2079809431 0.3537174297
## 1318  0.43841628 0.191228070 0.2067145110 0.3537174297
## 1457  0.44057723 0.191228070 0.2077881907 0.3573668639
## 70    0.44273670 0.191228070 0.2088598597 0.3610339458
## 873   0.44165704 0.192105263 0.2075971345 0.3610339458
## 1164  0.44057964 0.192982456 0.2063431368 0.3610339458
## 1056  0.44273847 0.192982456 0.2074077523 0.3647186754
## 239   0.44489587 0.192982456 0.2084703947 0.3684210526
## 270   0.44382152 0.193859649 0.2072200223 0.3684210526
## 81    0.44274941 0.194736842 0.2059782210 0.3684210526
## 632   0.44167952 0.195614035 0.2047449166 0.3684210526
## 1122  0.44061182 0.196491228 0.2035200357 0.3684210526
## 231   0.43954632 0.197368421 0.2023035056 0.3684210526
## 652   0.43848299 0.198245614 0.2010952545 0.3684210526
## 653   0.43742183 0.199122807 0.1998952113 0.3684210526
## 1045  0.43958065 0.199122807 0.2009384636 0.3721410775
## 723   0.44173811 0.199122807 0.2019798829 0.3758787501
## 1295  0.44389423 0.199122807 0.2030194656 0.3796340704
## 1244  0.44283642 0.200000000 0.2018201351 0.3796340704
## 326   0.44178074 0.200877193 0.2006288681 0.3796340704
## 861   0.44072717 0.201754386 0.1994455959 0.3796340704
## 1228  0.43967571 0.202631579 0.1982702509 0.3796340704
## 913   0.43862635 0.203508772 0.1971027661 0.3796340704
## 214   0.43757907 0.204385965 0.1959430752 0.3796340704
## 1317  0.43653386 0.205263158 0.1947911124 0.3796340704
## 728   0.43869146 0.205263158 0.1958117823 0.3834070383
## 222   0.43764870 0.206140351 0.1946650394 0.3834070383
## 522   0.43660798 0.207017544 0.1935258947 0.3834070383
## 451   0.43556930 0.207894737 0.1923942849 0.3834070383
## 765   0.43453264 0.208771930 0.1912701469 0.3834070383
## 1504  0.43349799 0.209649123 0.1901534187 0.3834070383
## 65    0.43246534 0.210526316 0.1890440387 0.3834070383
## 1381  0.43143468 0.211403509 0.1879419458 0.3834070383
## 1397  0.43040599 0.212280702 0.1868470799 0.3834070383
## 736   0.42937927 0.213157895 0.1857593811 0.3834070383
## 1161  0.42835450 0.214035088 0.1846787904 0.3834070383
## 1520  0.42733168 0.214912281 0.1836052492 0.3834070383
## 558   0.42949222 0.214912281 0.1845975232 0.3871976539
## 1419  0.43165156 0.214912281 0.1855882905 0.3910059172
## 610   0.43380973 0.214912281 0.1865775460 0.3948318281
## 405   0.43278996 0.215789474 0.1855037717 0.3948318281
## 954   0.43177210 0.216666667 0.1844369332 0.3948318281
## 155   0.43075615 0.217543860 0.1833769739 0.3948318281
## 411   0.42974209 0.218421053 0.1823238379 0.3948318281
## 1499  0.42872991 0.219298246 0.1812774700 0.3948318281
## 349   0.42771961 0.220175439 0.1802378154 0.3948318281
## 35    0.42987889 0.220175439 0.1812113229 0.3986753867
## 98    0.42887082 0.221052632 0.1801759576 0.3986753867
## 1201  0.42786460 0.221929825 0.1791471986 0.3986753867
## 1439  0.42686021 0.222807018 0.1781249928 0.3986753867
## 859   0.42585766 0.223684211 0.1771092876 0.3986753867
## 1290  0.42801732 0.223684211 0.1780719709 0.4025365930
## 490   0.43017592 0.223684211 0.1790332975 0.4064154469
## 732   0.43233345 0.223684211 0.1799932621 0.4103119485
## 1452  0.43448994 0.223684211 0.1809518594 0.4142260978
## 835   0.43349071 0.224561404 0.1799333043 0.4142260978
## 1294  0.43564656 0.224561404 0.1808882450 0.4181578947
## 45    0.43780140 0.224561404 0.1818418242 0.4221073394
## 672   0.43680476 0.225438596 0.1808251197 0.4221073394
## 1084  0.43580990 0.226315789 0.1798147674 0.4221073394
## 171   0.43796454 0.226315789 0.1807624779 0.4260744316
## 576   0.43697186 0.227192982 0.1797561778 0.4260744316
## 13    0.43598094 0.228070175 0.1787561313 0.4260744316
## 659   0.43499179 0.228947368 0.1777622895 0.4260744316
## 9     0.43400437 0.229824561 0.1767746040 0.4260744316
## 956   0.43301870 0.230701754 0.1757930268 0.4260744316
## 76    0.43203475 0.231578947 0.1748175102 0.4260744316
## 597   0.43105252 0.232456140 0.1738480074 0.4260744316
## 1479  0.43007200 0.233333333 0.1728844715 0.4260744316
## 519   0.42909318 0.234210526 0.1719268564 0.4260744316
## 1380  0.42811604 0.235087719 0.1709751164 0.4260744316
## 371   0.42714059 0.235964912 0.1700292062 0.4260744316
## 463   0.42616682 0.236842105 0.1690890808 0.4260744316
## 496   0.42519470 0.237719298 0.1681546957 0.4260744316
## 95    0.42422424 0.238596491 0.1672260070 0.4260744316
## 506   0.42325542 0.239473684 0.1663029709 0.4260744316
## 742   0.42228824 0.240350877 0.1653855442 0.4260744316
## 1483  0.42132269 0.241228070 0.1644736842 0.4260744316
## 85    0.42035875 0.242105263 0.1635673483 0.4260744316
## 1274  0.41939643 0.242982456 0.1626664946 0.4260744316
## 1162  0.41843570 0.243859649 0.1617710814 0.4260744316
## 930   0.42059709 0.243859649 0.1626730029 0.4300591716
## 504   0.41963833 0.244736842 0.1617807851 0.4300591716
## 1372  0.42179924 0.244736842 0.1626794645 0.4340615592
## 836   0.42084244 0.245614035 0.1617904193 0.4340615592
## 1261  0.41988720 0.246491228 0.1609066964 0.4340615592
## 209   0.41893353 0.247368421 0.1600282560 0.4340615592
## 1011  0.41798142 0.248245614 0.1591550584 0.4340615592
## 103   0.42014302 0.248245614 0.1600440089 0.4380815945
## 168   0.41919282 0.249122807 0.1591738493 0.4380815945
## 180   0.41824417 0.250000000 0.1583088567 0.4380815945
## 190   0.41729704 0.250877193 0.1574489926 0.4380815945
## 165   0.41635143 0.251754386 0.1565942187 0.4380815945
## 277   0.41540734 0.252631579 0.1557444974 0.4380815945
## 844   0.41757004 0.252631579 0.1566217130 0.4421192775
## 1510  0.41662783 0.253508772 0.1557748665 0.4421192775
## 510   0.41568711 0.254385965 0.1549330004 0.4421192775
## 920   0.41474788 0.255263158 0.1540960781 0.4421192775
## 356   0.41381012 0.256140351 0.1532640632 0.4421192775
## 48    0.41287384 0.257017544 0.1524369194 0.4421192775
## 489   0.41503768 0.257017544 0.1533025843 0.4461746081
## 186   0.41410324 0.257894737 0.1524781615 0.4461746081
## 79    0.41317025 0.258771930 0.1516585414 0.4461746081
## 173   0.41223871 0.259649123 0.1508436891 0.4461746081
## 802   0.41440298 0.259649123 0.1517021726 0.4502475864
## 505   0.41347326 0.260526316 0.1508899590 0.4502475864
## 1167  0.41563723 0.260526316 0.1517455078 0.4543382124
## 1205  0.41470932 0.261403509 0.1509359159 0.4543382124
## 1309  0.41378283 0.262280702 0.1501309939 0.4543382124
## 397   0.41594692 0.262280702 0.1509815630 0.4584464860
## 794   0.41502223 0.263157895 0.1501792149 0.4584464860
## 1356  0.41409895 0.264035088 0.1493814722 0.4584464860
## 1506  0.41317706 0.264912281 0.1485883018 0.4584464860
## 146   0.41534168 0.264912281 0.1494318973 0.4625724073
## 1395  0.41442158 0.265789474 0.1486412239 0.4625724073
## 1193  0.41350286 0.266666667 0.1478550604 0.4625724073
## 831   0.41258551 0.267543860 0.1470733744 0.4625724073
## 985   0.41166953 0.268421053 0.1462961339 0.4625724073
## 260   0.41075491 0.269298246 0.1455233074 0.4625724073
## 93    0.40984165 0.270175439 0.1447548633 0.4625724073
## 1342  0.40892973 0.271052632 0.1439907707 0.4625724073
## 156   0.40801915 0.271929825 0.1432309986 0.4625724073
## 1140  0.40710990 0.272807018 0.1424755165 0.4625724073
## 630   0.40620198 0.273684211 0.1417242941 0.4625724073
## 381   0.40529538 0.274561404 0.1409773012 0.4625724073
## 63    0.40439008 0.275438596 0.1402345082 0.4625724073
## 921   0.40348610 0.276315789 0.1394958853 0.4625724073
## 768   0.40258340 0.277192982 0.1387614035 0.4625724073
## 108   0.40475287 0.277192982 0.1395760255 0.4667159763
## 178   0.40385186 0.278070175 0.1388436662 0.4667159763
## 828   0.40295212 0.278947368 0.1381153932 0.4667159763
## 787   0.40205366 0.279824561 0.1373911780 0.4667159763
## 1518  0.40115647 0.280701754 0.1366709924 0.4667159763
## 583   0.40026055 0.281578947 0.1359548084 0.4667159763
## 575   0.39936588 0.282456140 0.1352425980 0.4667159763
## 1345  0.39847245 0.283333333 0.1345343339 0.4667159763
## 166   0.39758027 0.284210526 0.1338299886 0.4667159763
## 751   0.39668933 0.285087719 0.1331295351 0.4667159763
## 1130  0.39579961 0.285964912 0.1324329464 0.4667159763
## 649   0.39491112 0.286842105 0.1317401961 0.4667159763
## 494   0.39402384 0.287719298 0.1310512576 0.4667159763
## 908   0.39313777 0.288596491 0.1303661047 0.4667159763
## 647   0.39225291 0.289473684 0.1296847115 0.4667159763
## 60    0.39442728 0.289473684 0.1304712675 0.4708771930
## 154   0.39354399 0.290350877 0.1297916755 0.4708771930
## 1375  0.39266189 0.291228070 0.1291157954 0.4708771930
## 1341  0.39483662 0.291228070 0.1298979857 0.4750560573
## 318   0.39395610 0.292105263 0.1292238759 0.4750560573
## 864   0.39307675 0.292982456 0.1285534310 0.4750560573
## 1211  0.39525187 0.292982456 0.1293312996 0.4792525693
## 977   0.39437408 0.293859649 0.1286625947 0.4792525693
## 601   0.39654922 0.293859649 0.1294380726 0.4834667290
## 1050  0.39872400 0.293859649 0.1302130526 0.4876985363
## 428   0.39784819 0.294736842 0.1295442006 0.4876985363
## 1002  0.39697353 0.295614035 0.1288789497 0.4876985363
## 927   0.39914878 0.295614035 0.1296496895 0.4919479913
## 446   0.40132372 0.295614035 0.1304199355 0.4962150939
## 1476  0.40045103 0.296491228 0.1297545451 0.4962150939
## 434   0.39957950 0.297368421 0.1290927143 0.4962150939
## 140   0.39870910 0.298245614 0.1284344192 0.4962150939
## 1459  0.40088498 0.298245614 0.1291986396 0.5004998443
## 207   0.40001614 0.299122807 0.1285420216 0.5004998443
## 1333  0.40219216 0.299122807 0.1293039344 0.5048022423
## 991   0.40132487 0.300000000 0.1286489854 0.5048022423
## 502   0.40045869 0.300877193 0.1279975086 0.5048022423
## 1229  0.39959363 0.301754386 0.1273494809 0.5048022423
## 887   0.39872968 0.302631579 0.1267048796 0.5048022423
## 134   0.39786683 0.303508772 0.1260636822 0.5048022423
## 234   0.39700508 0.304385965 0.1254258660 0.5048022423
## 447   0.39918343 0.304385965 0.1261764607 0.5091222880
## 853   0.40136156 0.304385965 0.1269266202 0.5134599813
## 1495  0.40050177 0.305263158 0.1262885813 0.5134599813
## 1232  0.39964306 0.306140351 0.1256538859 0.5134599813
## 319   0.39878543 0.307017544 0.1250225123 0.5134599813
## 529   0.39792887 0.307894737 0.1243944387 0.5134599813
## 1522  0.39707338 0.308771930 0.1237696436 0.5134599813
## 577   0.39621895 0.309649123 0.1231481057 0.5134599813
## 906   0.39536557 0.310526316 0.1225298038 0.5134599813
## 1277  0.39451325 0.311403509 0.1219147169 0.5134599813
## 403   0.39366197 0.312280702 0.1213028242 0.5134599813
## 473   0.39281173 0.313157895 0.1206941050 0.5134599813
## 1474  0.39196252 0.314035088 0.1200885388 0.5134599813
## 1160  0.39111434 0.314912281 0.1194861053 0.5134599813
## 229   0.39026718 0.315789474 0.1188867842 0.5134599813
## 493   0.38942104 0.316666667 0.1182905555 0.5134599813
## 1463  0.38857591 0.317543860 0.1176973994 0.5134599813
## 865   0.38773179 0.318421053 0.1171072962 0.5134599813
## 144   0.38688867 0.319298246 0.1165202262 0.5134599813
## 1362  0.38604654 0.320175439 0.1159361701 0.5134599813
## 142   0.38823244 0.320175439 0.1166543728 0.5178153223
## 1191  0.38739174 0.321052632 0.1160715921 0.5178153223
## 696   0.38655203 0.321929825 0.1154917904 0.5178153223
## 989   0.38571330 0.322807018 0.1149149486 0.5178153223
## 587   0.38487554 0.323684211 0.1143410480 0.5178153223
## 1378  0.38403875 0.324561404 0.1137700699 0.5178153223
## 238   0.38236806 0.326315789 0.1126368073 0.5178153223
## 1182  0.38236806 0.326315789 0.1126368073 0.5178153223
## 1154  0.38153414 0.327192982 0.1120744862 0.5178153223
## 1060  0.38070117 0.328070175 0.1115150144 0.5178153223
## 246   0.37986915 0.328947368 0.1109583739 0.5178153223
## 343   0.37903806 0.329824561 0.1104045470 0.5178153223
## 974   0.38122882 0.329824561 0.1111037992 0.5221883110
## 268   0.38039912 0.330701754 0.1105510938 0.5221883110
## 368   0.37874249 0.332456140 0.1094540109 0.5221883110
## 1465  0.37874249 0.332456140 0.1094540109 0.5221883110
## 1019  0.37791555 0.333333333 0.1089095988 0.5221883110
## 1137  0.37708952 0.334210526 0.1083679166 0.5221883110
## 739   0.37626440 0.335087719 0.1078289474 0.5221883110
## 1502  0.37544018 0.335964912 0.1072926742 0.5221883110
## 1496  0.37461686 0.336842105 0.1067590804 0.5221883110
## 1327  0.37379443 0.337719298 0.1062281493 0.5221883110
## 1448  0.37297288 0.338596491 0.1056998645 0.5221883110
## 1230  0.37215222 0.339473684 0.1051742094 0.5221883110
## 1298  0.37434804 0.339473684 0.1058550725 0.5265789474
## 671   0.37352871 0.340350877 0.1053304014 0.5265789474
## 1257  0.37271026 0.341228070 0.1048083312 0.5265789474
## 291   0.37189268 0.342105263 0.1042888460 0.5265789474
## 1250  0.37107596 0.342982456 0.1037719298 0.5265789474
## 1065  0.37026010 0.343859649 0.1032575669 0.5265789474
## 58    0.36944509 0.344736842 0.1027457417 0.5265789474
## 745   0.36863093 0.345614035 0.1022364385 0.5265789474
## 901   0.36781761 0.346491228 0.1017296421 0.5265789474
## 1500  0.36700513 0.347368421 0.1012253370 0.5265789474
## 763   0.36619348 0.348245614 0.1007235082 0.5265789474
## 21    0.36538267 0.349122807 0.1002241405 0.5265789474
## 441   0.36758372 0.349122807 0.1008871675 0.5309872314
## 833   0.36677420 0.350000000 0.1003886607 0.5309872314
## 1096  0.36897586 0.350000000 0.1010500000 0.5354131631
## 791   0.36816765 0.350877193 0.1005523520 0.5354131631
## 549   0.36736025 0.351754386 0.1000571274 0.5354131631
## 1371  0.36956303 0.351754386 0.1007152205 0.5398567424
## 1494  0.36875693 0.352631579 0.1002208416 0.5398567424
## 448   0.37096038 0.352631579 0.1008772724 0.5443179695
## 382   0.37015558 0.353508772 0.1003837372 0.5443179695
## 949   0.36935158 0.354385965 0.0998925886 0.5443179695
## 666   0.36854839 0.355263158 0.0994038124 0.5443179695
## 1179  0.37075353 0.355263158 0.1000555024 0.5487968442
## 106   0.36995163 0.356140351 0.0995675461 0.5487968442
## 640   0.37215749 0.356140351 0.1002176077 0.5532933666
## 1235  0.37135689 0.357017544 0.0997304696 0.5532933666
## 863   0.37055707 0.357894737 0.0992456681 0.5532933666
## 774   0.36975804 0.358771930 0.0987631895 0.5532933666
## 1282  0.36895979 0.359649123 0.0982830199 0.5532933666
## 615   0.36816230 0.360526316 0.0978051456 0.5532933666
## 1233  0.36736559 0.361403509 0.0973295531 0.5532933666
## 879   0.36656964 0.362280702 0.0968562289 0.5532933666
## 771   0.36577445 0.363157895 0.0963851595 0.5532933666
## 1434  0.36498001 0.364035088 0.0959163316 0.5532933666
## 149   0.36418632 0.364912281 0.0954497321 0.5532933666
## 1351  0.36339338 0.365789474 0.0949853479 0.5532933666
## 290   0.36260119 0.366666667 0.0945231659 0.5532933666
## 820   0.36180973 0.367543860 0.0940631732 0.5532933666
## 320   0.36101900 0.368421053 0.0936053570 0.5532933666
## 1412  0.36323238 0.368421053 0.0942342880 0.5578075366
## 72    0.36544609 0.368421053 0.0948631908 0.5623393543
## 937   0.36465715 0.369298246 0.0944045878 0.5623393543
## 717   0.36386893 0.370175439 0.0939481424 0.5623393543
## 1249  0.36608406 0.370175439 0.0945740783 0.5668888197
## 143   0.36829955 0.370175439 0.0951999826 0.5714559327
## 128   0.37051541 0.370175439 0.0958258486 0.5760406934
## 737   0.36972956 0.371052632 0.0953671801 0.5760406934
## 141   0.36894442 0.371929825 0.0949106538 0.5760406934
## 691   0.37116179 0.371929825 0.0955335862 0.5806431018
## 54    0.37037793 0.372807018 0.0950777500 0.5806431018
## 47    0.36959478 0.373684211 0.0946240343 0.5806431018
## 1057  0.37181369 0.373684211 0.0952440590 0.5852631579
## 826   0.37103182 0.374561404 0.0947910233 0.5852631579
## 160   0.37025065 0.375438596 0.0943400869 0.5852631579
## 1255  0.36947019 0.376315789 0.0938912378 0.5852631579
## 435   0.36869042 0.377192982 0.0934444640 0.5852631579
## 1379  0.36791135 0.378070175 0.0929997537 0.5852631579
## 609   0.37013356 0.378070175 0.0936126533 0.5899008616
## 711   0.36935576 0.378947368 0.0931685865 0.5899008616
## 767   0.36857863 0.379824561 0.0927265627 0.5899008616
## 965   0.37080250 0.379824561 0.0933366383 0.5945562130
## 399   0.37302686 0.379824561 0.0939466968 0.5992292121
## 248   0.37225160 0.380701754 0.0935039144 0.5992292121
## 953   0.37147702 0.381578947 0.0930631579 0.5992292121
## 158   0.37070311 0.382456140 0.0926244158 0.5992292121
## 1224  0.36992987 0.383333333 0.0921876768 0.5992292121
## 1176  0.37215715 0.383333333 0.0927921779 0.6039198588
## 1058  0.37138518 0.384210526 0.0923560546 0.6039198588
## 289   0.37361361 0.384210526 0.0929591731 0.6086281532
## 899   0.37284292 0.385087719 0.0925236648 0.6086281532
## 643   0.37207289 0.385964912 0.0920901317 0.6086281532
## 189   0.37430312 0.385964912 0.0926905124 0.6133540953
## 121   0.37353436 0.386842105 0.0922575855 0.6133540953
## 105   0.37276626 0.387719298 0.0918266147 0.6133540953
## 562   0.37499833 0.387719298 0.0924242811 0.6180976850
## 15    0.37423151 0.388596491 0.0919939077 0.6180976850
## 192   0.37346534 0.389473684 0.0915654714 0.6180976850
## 220   0.37569929 0.389473684 0.0921604469 0.6228589225
## 1266  0.37493439 0.390350877 0.0917325995 0.6228589225
## 317   0.37417014 0.391228070 0.0913066706 0.6228589225
## 642   0.37340652 0.392105263 0.0908826498 0.6228589225
## 770   0.37264354 0.392982456 0.0904605263 0.6228589225
## 1037  0.37188119 0.393859649 0.0900402898 0.6228589225
## 191   0.37111946 0.394736842 0.0896219297 0.6228589225
## 626   0.37035835 0.395614035 0.0892054357 0.6228589225
## 74    0.37259746 0.395614035 0.0897911336 0.6276378075
## 88    0.37183762 0.396491228 0.0893751821 0.6276378075
## 251   0.37107840 0.397368421 0.0889610790 0.6276378075
## 1310  0.37031979 0.398245614 0.0885488143 0.6276378075
## 1178  0.37256157 0.398245614 0.0891306126 0.6324343403
## 453   0.37180422 0.399122807 0.0887188753 0.6324343403
## 1108  0.37104748 0.400000000 0.0883089591 0.6324343403
## 663   0.37029135 0.400877193 0.0879008539 0.6324343403
## 1514  0.36953581 0.401754386 0.0874945500 0.6324343403
## 133   0.36878086 0.402631579 0.0870900374 0.6324343403
## 569   0.37102671 0.402631579 0.0876654064 0.6372485207
## 1     0.37327334 0.402631579 0.0882408161 0.6420803488
## 664   0.37252034 0.403508772 0.0878355236 0.6420803488
## 31    0.37176792 0.404385965 0.0874320086 0.6420803488
## 1132  0.37101610 0.405263158 0.0870302614 0.6420803488
## 762   0.37326557 0.405263158 0.0876018896 0.6469298246
## 426   0.37251501 0.406140351 0.0872006341 0.6469298246
## 743   0.37176504 0.407017544 0.0868011301 0.6469298246
## 188   0.37101563 0.407894737 0.0864033682 0.6469298246
## 164   0.37026680 0.408771930 0.0860073390 0.6469298246
## 262   0.36951854 0.409649123 0.0856130332 0.6469298246
## 484   0.37177233 0.409649123 0.0861784157 0.6517969480
## 862   0.37102534 0.410526316 0.0857845748 0.6517969480
## 1365  0.37027891 0.411403509 0.0853924416 0.6517969480
## 327   0.36953304 0.412280702 0.0850020069 0.6517969480
## 701   0.36878772 0.413157895 0.0846132616 0.6517969480
## 1131  0.36804295 0.414035088 0.0842261967 0.6517969480
## 497   0.36729874 0.414912281 0.0838408032 0.6517969480
## 858   0.36655506 0.415789474 0.0834570724 0.6517969480
## 1467  0.36581192 0.416666667 0.0830749952 0.6517969480
## 419   0.36506932 0.417543860 0.0826945630 0.6517969480
## 992   0.36432726 0.418421053 0.0823157669 0.6517969480
## 712   0.36358572 0.419298246 0.0819385984 0.6517969480
## 499   0.36284471 0.420175439 0.0815630489 0.6517969480
## 709   0.36210422 0.421052632 0.0811891096 0.6517969480
## 199   0.36136424 0.421929825 0.0808167722 0.6517969480
## 1239  0.36062479 0.422807018 0.0804460283 0.6517969480
## 107   0.36289029 0.422807018 0.0809930633 0.6566817191
## 1223  0.36215208 0.423684211 0.0806226987 0.6566817191
## 1252  0.36141438 0.424561404 0.0802539135 0.6566817191
## 698   0.36067718 0.425438596 0.0798866992 0.6566817191
## 1355  0.35994049 0.426315789 0.0795210477 0.6566817191
## 1086  0.36220994 0.426315789 0.0800633934 0.6615841379
## 1036  0.36147450 0.427192982 0.0796981048 0.6615841379
## 488   0.36374572 0.427192982 0.0802393737 0.6665042043
## 177   0.36601796 0.427192982 0.0807807517 0.6714419184
## 1203  0.36528454 0.428070175 0.0804146443 0.6714419184
## 102   0.36455161 0.428947368 0.0800500829 0.6714419184
## 366   0.36381918 0.429824561 0.0796870597 0.6714419184
## 357   0.36308724 0.430701754 0.0793255666 0.6714419184
## 1219  0.36235578 0.431578947 0.0789655956 0.6714419184
## 580   0.36162481 0.432456140 0.0786071388 0.6714419184
## 365   0.36089432 0.433333333 0.0782501885 0.6714419184
## 964   0.36317304 0.433333333 0.0787834711 0.6763972802
## 16    0.36545287 0.433333333 0.0793168747 0.6813702896
## 361   0.36472443 0.434210526 0.0789591040 0.6813702896
## 1307  0.36399647 0.435087719 0.0786028293 0.6813702896
## 843   0.36627900 0.435087719 0.0791340416 0.6863609467
## 420   0.36555232 0.435964912 0.0787781054 0.6863609467
## 255   0.36482610 0.436842105 0.0784236523 0.6863609467
## 813   0.36711140 0.436842105 0.0789526907 0.6913692515
## 1071  0.36638646 0.437719298 0.0785985715 0.6913692515
## 59    0.36566200 0.438596491 0.0782459228 0.6913692515
## 883   0.36795011 0.438596491 0.0787728042 0.6963952040
## 734   0.36722693 0.439473684 0.0784204848 0.6963952040
## 681   0.36951706 0.439473684 0.0789463542 0.7014388041
## 1246  0.36879518 0.440350877 0.0785943647 0.7014388041
## 1109  0.36807376 0.441228070 0.0782438280 0.7014388041
## 1106  0.36735279 0.442105263 0.0778947368 0.7014388041
## 1026  0.36663228 0.442982456 0.0775470838 0.7014388041
## 800   0.36591222 0.443859649 0.0772008615 0.7014388041
## 948   0.36519260 0.444736842 0.0768560629 0.7014388041
## 1471  0.36447343 0.445614035 0.0765126806 0.7014388041
## 244   0.36375470 0.446491228 0.0761707076 0.7014388041
## 476   0.36303640 0.447368421 0.0758301367 0.7014388041
## 821   0.36231854 0.448245614 0.0754909609 0.7014388041
## 1287  0.36160111 0.449122807 0.0751531731 0.7014388041
## 982   0.36088411 0.450000000 0.0748167663 0.7014388041
## 1064  0.36016753 0.450877193 0.0744817337 0.7014388041
## 636   0.35945137 0.451754386 0.0741480684 0.7014388041
## 898   0.35873562 0.452631579 0.0738157634 0.7014388041
## 430   0.35802029 0.453508772 0.0734848119 0.7014388041
## 1272  0.35730537 0.454385965 0.0731552073 0.7014388041
## 1353  0.35659086 0.455263158 0.0728269427 0.7014388041
## 902   0.35587675 0.456140351 0.0725000115 0.7014388041
## 1306  0.35516304 0.457017544 0.0721744070 0.7014388041
## 252   0.35444973 0.457894737 0.0718501226 0.7014388041
## 373   0.35373682 0.458771930 0.0715271518 0.7014388041
## 1422  0.35604716 0.458771930 0.0720289417 0.7065000519
## 233   0.35533553 0.459649123 0.0717062053 0.7065000519
## 377   0.35462428 0.460526316 0.0713847717 0.7065000519
## 525   0.35391342 0.461403509 0.0710646346 0.7065000519
## 944   0.35320294 0.462280702 0.0707457875 0.7065000519
## 730   0.35551827 0.462280702 0.0712434868 0.7115789474
## 1350  0.35480908 0.463157895 0.0709248627 0.7115789474
## 645   0.35410026 0.464035088 0.0706075182 0.7115789474
## 275   0.35339182 0.464912281 0.0702914470 0.7115789474
## 1336  0.35571134 0.464912281 0.0707861600 0.7166754905
## 1038  0.35500419 0.465789474 0.0704703048 0.7166754905
## 1134  0.35429742 0.466666667 0.0701557126 0.7166754905
## 135   0.35359101 0.467543860 0.0698423774 0.7166754905
## 1118  0.35288497 0.468421053 0.0695302929 0.7166754905
## 1030  0.35217929 0.469298246 0.0692194531 0.7166754905
## 378   0.35147397 0.470175439 0.0689098518 0.7166754905
## 485   0.35380056 0.470175439 0.0693984915 0.7217896813
## 536   0.35309654 0.471052632 0.0690890879 0.7217896813
## 1220  0.35239287 0.471929825 0.0687809129 0.7217896813
## 897   0.35168956 0.472807018 0.0684739607 0.7217896813
## 786   0.35098659 0.473684211 0.0681682253 0.7217896813
## 162   0.35028397 0.474561404 0.0678637008 0.7217896813
## 461   0.34958169 0.475438596 0.0675603814 0.7217896813
## 195   0.34887974 0.476315789 0.0672582611 0.7217896813
## 539   0.34817814 0.477192982 0.0669573342 0.7217896813
## 1208  0.35051394 0.477192982 0.0674379715 0.7269215198
## 629   0.34981363 0.478070175 0.0671372177 0.7269215198
## 127   0.34911366 0.478947368 0.0668376480 0.7269215198
## 552   0.34841402 0.479824561 0.0665392566 0.7269215198
## 412   0.34771470 0.480701754 0.0662420380 0.7269215198
## 1007  0.34701571 0.481578947 0.0659459864 0.7269215198
## 4     0.34631703 0.482456140 0.0656510962 0.7269215198
## 627   0.34561867 0.483333333 0.0653573619 0.7269215198
## 888   0.34492063 0.484210526 0.0650647779 0.7269215198
## 922   0.34422289 0.485087719 0.0647733388 0.7269215198
## 1158  0.34352546 0.485964912 0.0644830390 0.7269215198
## 1289  0.34587278 0.485964912 0.0649538624 0.7320710059
## 635   0.34517666 0.486842105 0.0646637062 0.7320710059
## 588   0.34683190 0.487719298 0.0648437573 0.7372381397
## 604   0.34683190 0.487719298 0.0648437573 0.7372381397
## 1398  0.34613740 0.488596491 0.0645548733 0.7372381397
## 18    0.34544320 0.489473684 0.0642671114 0.7372381397
## 1477  0.34474929 0.490350877 0.0639804661 0.7372381397
## 212   0.34710519 0.490350877 0.0644468314 0.7424229212
## 1301  0.34641261 0.491228070 0.0641603225 0.7424229212
## 92    0.34572033 0.492105263 0.0638749219 0.7424229212
## 1173  0.34808010 0.492105263 0.0643395719 0.7476253504
## 1403  0.34738916 0.492982456 0.0640543057 0.7476253504
## 1447  0.34669851 0.493859649 0.0637701394 0.7476253504
## 1521  0.34600814 0.494736842 0.0634870678 0.7476253504
## 1316  0.34531806 0.495614035 0.0632050858 0.7476253504
## 544   0.34462826 0.496491228 0.0629241883 0.7476253504
## 658   0.34393874 0.497368421 0.0626443701 0.7476253504
## 931   0.34630672 0.497368421 0.0631034807 0.7528454272
## 1489  0.34561855 0.498245614 0.0628237828 0.7528454272
## 1472  0.34493065 0.499122807 0.0625451562 0.7528454272
## 379   0.34424302 0.500000000 0.0622675960 0.7528454272
## 24    0.34661616 0.500000000 0.0627240932 0.7580831517
## 292   0.34592989 0.500877193 0.0624466486 0.7580831517
## 790   0.34524390 0.501754386 0.0621702624 0.7580831517
## 537   0.34455816 0.502631579 0.0618949296 0.7580831517
## 1308  0.34387269 0.503508772 0.0616206454 0.7580831517
## 952   0.34318748 0.504385965 0.0613474049 0.7580831517
## 1401  0.34250252 0.505263158 0.0610752033 0.7580831517
## 425   0.34181782 0.506140351 0.0608040356 0.7580831517
## 1470  0.34113336 0.507017544 0.0605338972 0.7580831517
## 169   0.34044915 0.507894737 0.0602647832 0.7580831517
## 1245  0.33976519 0.508771930 0.0599966890 0.7580831517
## 139   0.33908146 0.509649123 0.0597296097 0.7580831517
## 638   0.34146884 0.509649123 0.0601760763 0.7633385238
## 1299  0.34385827 0.509649123 0.0606227979 0.7686115437
## 1304  0.34317706 0.510526316 0.0603548881 0.7686115437
## 315   0.34249610 0.511403509 0.0600879879 0.7686115437
## 874   0.34181538 0.512280702 0.0598220927 0.7686115437
## 69    0.34421035 0.512280702 0.0602663181 0.7739022111
## 848   0.34660742 0.512280702 0.0607107950 0.7792105263
## 1175  0.34900662 0.512280702 0.0611555186 0.7845364892
## 314   0.34832966 0.513157895 0.0608878949 0.7845364892
## 348   0.34765295 0.514035088 0.0606212728 0.7845364892
## 710   0.34697647 0.514912281 0.0603556478 0.7845364892
## 1393  0.34630023 0.515789474 0.0600910152 0.7845364892
## 815   0.34562422 0.516666667 0.0598273707 0.7845364892
## 359   0.34494843 0.517543860 0.0595647096 0.7845364892
## 1199  0.34427288 0.518421053 0.0593030275 0.7845364892
## 1469  0.34359755 0.519298246 0.0590423200 0.7845364892
## 73    0.34292244 0.520175439 0.0587825826 0.7845364892
## 82    0.34224754 0.521052632 0.0585238109 0.7845364892
## 1020  0.34157286 0.521929825 0.0582660005 0.7845364892
## 40    0.34089839 0.522807018 0.0580091472 0.7845364892
## 890   0.34022413 0.523684211 0.0577532465 0.7845364892
## 369   0.33955007 0.524561404 0.0574982942 0.7845364892
## 527   0.33887622 0.525438596 0.0572442860 0.7845364892
## 1475  0.33820257 0.526315789 0.0569912175 0.7845364892
## 1402  0.33752911 0.527192982 0.0567390847 0.7845364892
## 1044  0.33685584 0.528070175 0.0564878832 0.7845364892
## 254   0.33618276 0.528947368 0.0562376089 0.7845364892
## 553   0.33550987 0.529824561 0.0559882576 0.7845364892
## 362   0.33483717 0.530701754 0.0557398252 0.7845364892
## 532   0.33416464 0.531578947 0.0554923075 0.7845364892
## 1136  0.33349229 0.532456140 0.0552457005 0.7845364892
## 1394  0.33282012 0.533333333 0.0550000000 0.7845364892
## 1444  0.33214812 0.534210526 0.0547552020 0.7845364892
## 1305  0.33147628 0.535087719 0.0545113026 0.7845364892
## 1275  0.33080461 0.535964912 0.0542682976 0.7845364892
## 1216  0.33323953 0.535964912 0.0546894752 0.7898800997
## 1123  0.33256932 0.536842105 0.0544465058 0.7898800997
## 311   0.33189927 0.537719298 0.0542044248 0.7898800997
## 1442  0.33122938 0.538596491 0.0539632282 0.7898800997
## 1281  0.33055965 0.539473684 0.0537229120 0.7898800997
## 1066  0.32989007 0.540350877 0.0534834724 0.7898800997
## 779   0.32922065 0.541228070 0.0532449055 0.7898800997
## 941   0.32855137 0.542105263 0.0530072074 0.7898800997
## 547   0.32788224 0.542982456 0.0527703742 0.7898800997
## 785   0.32721324 0.543859649 0.0525344022 0.7898800997
## 44    0.32654439 0.544736842 0.0522992876 0.7898800997
## 431   0.32587567 0.545614035 0.0520650265 0.7898800997
## 1516  0.32520709 0.546491228 0.0518316151 0.7898800997
## 1204  0.32453863 0.547368421 0.0515990499 0.7898800997
## 1035  0.32387030 0.548245614 0.0513673269 0.7898800997
## 46    0.32320209 0.549122807 0.0511364426 0.7898800997
## 1221  0.32253401 0.550000000 0.0509063932 0.7898800997
## 987   0.32186604 0.550877193 0.0506771750 0.7898800997
## 1085  0.32432614 0.550877193 0.0510843811 0.7952413578
## 829   0.32365966 0.551754386 0.0508551680 0.7952413578
## 814   0.32299329 0.552631579 0.0506267807 0.7952413578
## 393   0.32232703 0.553508772 0.0503992156 0.7952413578
## 592   0.32166089 0.554385965 0.0501724690 0.7952413578
## 1271  0.32099485 0.555263158 0.0499465374 0.7952413578
## 174   0.32032891 0.556140351 0.0497214173 0.7952413578
## 429   0.31966307 0.557017544 0.0494971051 0.7952413578
## 842   0.32213561 0.557017544 0.0498989093 0.8006202637
## 1190  0.32147128 0.557894737 0.0496745927 0.8006202637
## 179   0.32394799 0.557894737 0.0500759043 0.8060168172
## 1124  0.32328520 0.558771930 0.0498515847 0.8060168172
## 433   0.32262250 0.559649123 0.0496280660 0.8060168172
## 39    0.32195990 0.560526316 0.0494053446 0.8060168172
## 622   0.32129739 0.561403509 0.0491834172 0.8060168172
## 1508  0.32063498 0.562280702 0.0489622804 0.8060168172
## 300   0.32312174 0.562280702 0.0493599001 0.8114310184
## 870   0.32246087 0.563157895 0.0491387547 0.8114310184
## 491   0.32495197 0.563157895 0.0495358947 0.8168628672
## 157   0.32744595 0.563157895 0.0499333465 0.8223123637
## 670   0.32678816 0.564035088 0.0497114029 0.8223123637
## 817   0.32613046 0.564912281 0.0494902447 0.8223123637
## 1354  0.32547286 0.565789474 0.0492698685 0.8223123637
## 571   0.32481534 0.566666667 0.0490502710 0.8223123637
## 247   0.32415790 0.567543860 0.0488314489 0.8223123637
## 130   0.32350055 0.568421053 0.0486133988 0.8223123637
## 457   0.32284327 0.569298246 0.0483961174 0.8223123637
## 394   0.32535084 0.569298246 0.0487883836 0.8277795079
## 256   0.32469519 0.570175439 0.0485710895 0.8277795079
## 651   0.32403961 0.571052632 0.0483545593 0.8277795079
## 740   0.32338411 0.571929825 0.0481387897 0.8277795079
## 1466  0.32272868 0.572807018 0.0479237774 0.8277795079
## 852   0.32524553 0.572807018 0.0483132593 0.8332642998
## 261   0.32459175 0.573684211 0.0480982310 0.8332642998
## 1031  0.32393803 0.574561404 0.0478839551 0.8332642998
## 1368  0.32328438 0.575438596 0.0476704287 0.8332642998
## 759   0.32580912 0.575438596 0.0480579230 0.8387667393
## 472   0.32515714 0.576315789 0.0478443786 0.8387667393
## 868   0.32450523 0.577192982 0.0476315789 0.8387667393
## 1063  0.32385338 0.578070175 0.0474195208 0.8387667393
## 454   0.32320159 0.578947368 0.0472082009 0.8387667393
## 309   0.32573600 0.578947368 0.0475929679 0.8442868265
## 272   0.32508591 0.579824561 0.0473816269 0.8442868265
## 955   0.32443588 0.580701754 0.0471710198 0.8442868265
## 1488  0.32378590 0.581578947 0.0469611432 0.8442868265
## 662   0.32313598 0.582456140 0.0467519943 0.8442868265
## 943   0.32248610 0.583333333 0.0465435699 0.8442868265
## 612   0.32183627 0.584210526 0.0463358670 0.8442868265
## 30    0.32118649 0.585087719 0.0461288826 0.8442868265
## 1525  0.32053674 0.585964912 0.0459226137 0.8442868265
## 508   0.31988704 0.586842105 0.0457170572 0.8442868265
## 607   0.32243978 0.586842105 0.0460954004 0.8498245614
## 1259  0.32179181 0.587719298 0.0458898125 0.8498245614
## 432   0.32114388 0.588596491 0.0456849328 0.8498245614
## 1435  0.32049598 0.589473684 0.0454807581 0.8498245614
## 1468  0.31984812 0.590350877 0.0452772857 0.8498245614
## 123   0.31920027 0.591228070 0.0450745126 0.8498245614
## 1303  0.31855246 0.592105263 0.0448724359 0.8498245614
## 892   0.31790466 0.592982456 0.0446710526 0.8498245614
## 1425  0.31725688 0.593859649 0.0444703600 0.8498245614
## 305   0.31982694 0.593859649 0.0448431509 0.8553799439
## 822   0.31918094 0.594736842 0.0446424187 0.8553799439
## 680   0.32175632 0.594736842 0.0450148111 0.8609529742
## 1148  0.32111213 0.595614035 0.0448140405 0.8609529742
## 1184  0.32046795 0.596491228 0.0446139551 0.8609529742
## 1450  0.32305051 0.596491228 0.0449852268 0.8665436520
## 589   0.32240817 0.597368421 0.0447851031 0.8665436520
## 1240  0.32176585 0.598245614 0.0445856604 0.8665436520
## 940   0.32112355 0.599122807 0.0443868958 0.8665436520
## 1524  0.32048127 0.600000000 0.0441888066 0.8665436520
## 376   0.31983899 0.600877193 0.0439913901 0.8665436520
## 259   0.31919672 0.601754386 0.0437946434 0.8665436520
## 1503  0.31855445 0.602631579 0.0435985638 0.8665436520
## 194   0.31791219 0.603508772 0.0434031486 0.8665436520
## 1360  0.31726992 0.604385965 0.0432083951 0.8665436520
## 267   0.31987283 0.604385965 0.0435735689 0.8721519776
## 556   0.31923244 0.605263158 0.0433787683 0.8721519776
## 1202  0.31859206 0.606140351 0.0431846254 0.8721519776
## 824   0.31795167 0.607017544 0.0429911375 0.8721519776
## 1197  0.31731127 0.607894737 0.0427983020 0.8721519776
## 116   0.31667086 0.608771930 0.0426061163 0.8721519776
## 1391  0.31603043 0.609649123 0.0424145777 0.8721519776
## 456   0.31538999 0.610526316 0.0422236835 0.8721519776
## 1138  0.31474952 0.611403509 0.0420334311 0.8721519776
## 1029  0.31410903 0.612280702 0.0418438180 0.8721519776
## 1213  0.31673314 0.612280702 0.0422030289 0.8777779508
## 1052  0.31936123 0.612280702 0.0425625752 0.8834215717
## 516   0.31872466 0.613157895 0.0423722159 0.8834215717
## 501   0.31808808 0.614035088 0.0421824935 0.8834215717
## 697   0.31745148 0.614912281 0.0419934055 0.8834215717
## 860   0.31681486 0.615789474 0.0418049494 0.8834215717
## 617   0.31617820 0.616666667 0.0416171225 0.8834215717
## 372   0.31554152 0.617543860 0.0414299223 0.8834215717
## 650   0.31490481 0.618421053 0.0412433463 0.8834215717
## 1329  0.31755107 0.618421053 0.0415984248 0.8890828402
## 797   0.31691637 0.619298246 0.0414117906 0.8890828402
## 780   0.31628164 0.620175439 0.0412257770 0.8890828402
## 458   0.31564688 0.621052632 0.0410403814 0.8890828402
## 1358  0.31501207 0.621929825 0.0408556016 0.8890828402
## 715   0.31437723 0.622807018 0.0406714349 0.8890828402
## 542   0.31374233 0.623684211 0.0404878789 0.8890828402
## 1015  0.31310739 0.624561404 0.0403049313 0.8890828402
## 722   0.31577248 0.624561404 0.0406556212 0.8947617565
## 914   0.31513961 0.625438596 0.0404726101 0.8947617565
## 591   0.31450670 0.626315789 0.0402902039 0.8947617565
## 599   0.31718040 0.626315789 0.0406398967 0.9004583204
## 1263  0.31654959 0.627192982 0.0404574273 0.9004583204
## 788   0.31591875 0.628070175 0.0402755593 0.9004583204
## 719   0.31528785 0.628947368 0.0400942903 0.9004583204
## 1198  0.31465689 0.629824561 0.0399136179 0.9004583204
## 1511  0.31402589 0.630701754 0.0397335398 0.9004583204
## 1112  0.31339482 0.631578947 0.0395540536 0.9004583204
## 1144  0.31276369 0.632456140 0.0393751569 0.9004583204
## 392   0.31213249 0.633333333 0.0391968474 0.9004583204
## 404   0.31150123 0.634210526 0.0390191229 0.9004583204
## 567   0.31419924 0.634210526 0.0393632195 0.9061725319
## 735   0.31357015 0.635087719 0.0391854251 0.9061725319
## 633   0.31294100 0.635964912 0.0390082124 0.9061725319
## 1400  0.31231178 0.636842105 0.0388315789 0.9061725319
## 1135  0.31168249 0.637719298 0.0386555226 0.9061725319
## 375   0.31105311 0.638596491 0.0384800411 0.9061725319
## 530   0.31042366 0.639473684 0.0383051321 0.9061725319
## 77    0.30979412 0.640350877 0.0381307934 0.9061725319
## 1288  0.31251285 0.640350877 0.0384706982 0.9119043912
## 546   0.31188556 0.641228070 0.0382962852 0.9119043912
## 43    0.31125819 0.642105263 0.0381224394 0.9119043912
## 387   0.31063073 0.642982456 0.0379491586 0.9119043912
## 518   0.31000319 0.643859649 0.0377764404 0.9119043912
## 67    0.30937555 0.644736842 0.0376042828 0.9119043912
## 1115  0.30874782 0.645614035 0.0374326835 0.9119043912
## 726   0.31148561 0.645614035 0.0377691032 0.9176538981
## 120   0.31086019 0.646491228 0.0375974264 0.9176538981
## 754   0.31023468 0.647368421 0.0374263049 0.9176538981
## 1013  0.30960908 0.648245614 0.0372557366 0.9176538981
## 1017  0.30898337 0.649122807 0.0370857193 0.9176538981
## 869   0.30835756 0.650000000 0.0369162508 0.9176538981
## 947   0.30773164 0.650877193 0.0367473290 0.9176538981
## 421   0.30710561 0.651754386 0.0365789518 0.9176538981
## 706   0.30647947 0.652631579 0.0364111171 0.9176538981
## 1024  0.30585321 0.653508772 0.0362438228 0.9176538981
## 370   0.30522683 0.654385965 0.0360770668 0.9176538981
## 321   0.30460032 0.655263158 0.0359108470 0.9176538981
## 616   0.30397369 0.656140351 0.0357451613 0.9176538981
## 1185  0.30334692 0.657017544 0.0355800078 0.9176538981
## 776   0.30272002 0.657894737 0.0354153843 0.9176538981
## 90    0.30209298 0.658771930 0.0352512888 0.9176538981
## 1113  0.30146579 0.659649123 0.0350877193 0.9176538981
## 1513  0.30083846 0.660526316 0.0349246737 0.9176538981
## 208   0.30021098 0.661403509 0.0347621501 0.9176538981
## 1041  0.29958335 0.662280702 0.0346001464 0.9176538981
## 383   0.29895556 0.663157895 0.0344386607 0.9176538981
## 746   0.29832761 0.664035088 0.0342776909 0.9176538981
## 1407  0.29769949 0.664912281 0.0341172351 0.9176538981
## 708   0.29707121 0.665789474 0.0339572913 0.9176538981
## 1428  0.29644275 0.666666667 0.0337978576 0.9176538981
## 907   0.29581412 0.667543860 0.0336389320 0.9176538981
## 509   0.29518531 0.668421053 0.0334805125 0.9176538981
## 1325  0.29455631 0.669298246 0.0333225973 0.9176538981
## 1455  0.29736842 0.669298246 0.0336427200 0.9234210526
## 398   0.30018616 0.669298246 0.0339632060 0.9292058549
## 1328  0.29956244 0.670175439 0.0338045958 0.9292058549
## 540   0.29893855 0.671052632 0.0336464883 0.9292058549
## 781   0.29831449 0.671929825 0.0334888818 0.9292058549
## 1072  0.29769026 0.672807018 0.0333317744 0.9292058549
## 999   0.29706584 0.673684211 0.0331751640 0.9292058549
## 36    0.29644124 0.674561404 0.0330190489 0.9292058549
## 1280  0.29581645 0.675438596 0.0328634272 0.9292058549
## 1062  0.29519147 0.676315789 0.0327082969 0.9292058549
## 995   0.29456630 0.677192982 0.0325536564 0.9292058549
## 882   0.29741508 0.677192982 0.0328691670 0.9350083048
## 1139  0.29679259 0.678070175 0.0327144273 0.9350083048
## 700   0.29616991 0.678947368 0.0325601748 0.9350083048
## 613   0.29554703 0.679824561 0.0324064077 0.9350083048
## 1313  0.29492395 0.680701754 0.0322531240 0.9350083048
## 784   0.29430067 0.681578947 0.0321003219 0.9350083048
## 1373  0.29367718 0.682456140 0.0319479997 0.9350083048
## 333   0.29305349 0.683333333 0.0317961556 0.9350083048
## 1107  0.29242958 0.684210526 0.0316447877 0.9350083048
## 336   0.29180545 0.685087719 0.0314938943 0.9350083048
## 618   0.29118110 0.685964912 0.0313434736 0.9350083048
## 1498  0.29055653 0.686842105 0.0311935239 0.9350083048
## 1189  0.28993172 0.687719298 0.0310440432 0.9350083048
## 951   0.28930668 0.688596491 0.0308950300 0.9350083048
## 388   0.28868140 0.689473684 0.0307464825 0.9350083048
## 1022  0.28805588 0.690350877 0.0305983989 0.9350083048
## 1237  0.28743012 0.691228070 0.0304507775 0.9350083048
## 328   0.28680410 0.692105263 0.0303036166 0.9350083048
## 1364  0.28617783 0.692982456 0.0301569144 0.9350083048
## 55    0.28555130 0.693859649 0.0300106693 0.9350083048
## 1145  0.28492450 0.694736842 0.0298648796 0.9350083048
## 799   0.28429744 0.695614035 0.0297195435 0.9350083048
## 713   0.28367011 0.696491228 0.0295746594 0.9350083048
## 880   0.28304250 0.697368421 0.0294302256 0.9350083048
## 460   0.28241461 0.698245614 0.0292862405 0.9350083048
## 584   0.28178644 0.699122807 0.0291427023 0.9350083048
## 514   0.28115797 0.700000000 0.0289996095 0.9350083048
## 1151  0.28052922 0.700877193 0.0288569603 0.9350083048
## 1406  0.27990016 0.701754386 0.0287147532 0.9350083048
## 1348  0.27927080 0.702631579 0.0285729864 0.9350083048
## 1429  0.27864114 0.703508772 0.0284316585 0.9350083048
## 1485  0.27801116 0.704385965 0.0282907677 0.9350083048
## 535   0.27738087 0.705263158 0.0281503125 0.9350083048
## 1344  0.27675026 0.706140351 0.0280102912 0.9350083048
## 1192  0.27611932 0.707017544 0.0278707022 0.9350083048
## 1427  0.27548806 0.707894737 0.0277315441 0.9350083048
## 586   0.27485645 0.708771930 0.0275928151 0.9350083048
## 89    0.27422451 0.709649123 0.0274545137 0.9350083048
## 1101  0.27359223 0.710526316 0.0273166383 0.9350083048
## 757   0.27295959 0.711403509 0.0271791875 0.9350083048
## 963   0.27232661 0.712280702 0.0270421595 0.9350083048
## 474   0.27169326 0.713157895 0.0269055529 0.9350083048
## 1009  0.27105955 0.714035088 0.0267693662 0.9350083048
## 600   0.27404820 0.714035088 0.0270616062 0.9408284024
## 443   0.27704424 0.714035088 0.0273542314 0.9466661476
## 545   0.27641722 0.714912281 0.0272173859 0.9466661476
## 950   0.27578986 0.715789474 0.0270809592 0.9466661476
## 87    0.27516216 0.716666667 0.0269449500 0.9466661476
## 695   0.27453411 0.717543860 0.0268093566 0.9466661476
## 1157  0.27390571 0.718421053 0.0266741776 0.9466661476
## 50    0.27327695 0.719298246 0.0265394115 0.9466661476
## 856   0.27264782 0.720175439 0.0264050567 0.9466661476
## 1487  0.27201833 0.721052632 0.0262711118 0.9466661476
## 1530  0.27138846 0.721929825 0.0261375753 0.9466661476
## 245   0.27075821 0.722807018 0.0260044457 0.9466661476
## 679   0.27012758 0.723684211 0.0258717215 0.9466661476
## 625   0.26949656 0.724561404 0.0257394013 0.9466661476
## 325   0.26886515 0.725438596 0.0256074836 0.9466661476
## 1361  0.26823334 0.726315789 0.0254759669 0.9466661476
## 958   0.26760113 0.727192982 0.0253448499 0.9466661476
## 503   0.26696850 0.728070175 0.0252141310 0.9466661476
## 1129  0.26633546 0.728947368 0.0250838089 0.9466661476
## 1159  0.26570201 0.729824561 0.0249538820 0.9466661476
## 417   0.26506812 0.730701754 0.0248243490 0.9466661476
## 1258  0.26443381 0.731578947 0.0246952085 0.9466661476
## 1321  0.26379906 0.732456140 0.0245664591 0.9466661476
## 1241  0.26316387 0.733333333 0.0244380993 0.9466661476
## 1501  0.26252824 0.734210526 0.0243101277 0.9466661476
## 960   0.26189215 0.735087719 0.0241825430 0.9466661476
## 477   0.26125560 0.735964912 0.0240553438 0.9466661476
## 1349  0.26061859 0.736842105 0.0239285286 0.9466661476
## 867   0.25998112 0.737719298 0.0238020962 0.9466661476
## 523   0.25934316 0.738596491 0.0236760452 0.9466661476
## 1025  0.25870473 0.739473684 0.0235503741 0.9466661476
## 994   0.25806581 0.740350877 0.0234250817 0.9466661476
## 312   0.25742640 0.741228070 0.0233001665 0.9466661476
## 124   0.25678649 0.742105263 0.0231756273 0.9466661476
## 574   0.25614608 0.742982456 0.0230514626 0.9466661476
## 979   0.25550516 0.743859649 0.0229276713 0.9466661476
## 573   0.25486372 0.744736842 0.0228042519 0.9466661476
## 1083  0.25422176 0.745614035 0.0226812030 0.9466661476
## 1028  0.25357927 0.746491228 0.0225585235 0.9466661476
## 778   0.25293625 0.747368421 0.0224362120 0.9466661476
## 459   0.25229269 0.748245614 0.0223142672 0.9466661476
## 896   0.25164858 0.749122807 0.0221926877 0.9466661476
## 94    0.25100391 0.750000000 0.0220714723 0.9466661476
## 823   0.25035869 0.750877193 0.0219506198 0.9466661476
## 1293  0.25352931 0.750877193 0.0222219353 0.9525215405
## 1390  0.25288796 0.751754386 0.0221009494 0.9525215405
## 396   0.25224606 0.752631579 0.0219803248 0.9525215405
## 1251  0.25160361 0.753508772 0.0218600601 0.9525215405
## 818   0.25096059 0.754385965 0.0217401540 0.9525215405
## 37    0.25031701 0.755263158 0.0216206054 0.9525215405
## 391   0.24967285 0.756140351 0.0215014129 0.9525215405
## 741   0.24902811 0.757017544 0.0213825753 0.9525215405
## 407   0.24838278 0.757894737 0.0212640914 0.9525215405
## 1236  0.24773686 0.758771930 0.0211459599 0.9525215405
## 959   0.24709034 0.759649123 0.0210281795 0.9525215405
## 1267  0.24644320 0.760526316 0.0209107491 0.9525215405
## 1018  0.24579546 0.761403509 0.0207936674 0.9525215405
## 1209  0.24903106 0.761403509 0.0210595124 0.9583945811
## 1392  0.24838749 0.762280702 0.0209422953 0.9583945811
## 478   0.24774332 0.763157895 0.0208254254 0.9583945811
## 1059  0.24709854 0.764035088 0.0207089015 0.9583945811
## 507   0.24645314 0.764912281 0.0205927224 0.9583945811
## 699   0.24580712 0.765789474 0.0204768869 0.9583945811
## 1034  0.24516047 0.766666667 0.0203613939 0.9583945811
## 1326  0.24451318 0.767543860 0.0202462420 0.9583945811
## 2     0.24386525 0.768421053 0.0201314301 0.9583945811
## 1279  0.24321667 0.769298246 0.0200169571 0.9583945811
## 115   0.24256743 0.770175439 0.0199028217 0.9583945811
## 716   0.24191753 0.771052632 0.0197890228 0.9583945811
## 1076  0.24126695 0.771929825 0.0196755592 0.9583945811
## 1386  0.24061569 0.772807018 0.0195624298 0.9583945811
## 1323  0.23996374 0.773684211 0.0194496333 0.9583945811
## 917   0.23931109 0.774561404 0.0193371687 0.9583945811
## 481   0.24263277 0.774561404 0.0195962747 0.9642852694
## 1484  0.24198472 0.775438596 0.0194836722 0.9642852694
## 7     0.24133599 0.776315789 0.0193714002 0.9642852694
## 986   0.24068657 0.777192982 0.0192594575 0.9642852694
## 232   0.24403575 0.777192982 0.0195175644 0.9701936053
## 243   0.24339110 0.778070175 0.0194054843 0.9701936053
## 1153  0.24274578 0.778947368 0.0192937323 0.9701936053
## 1254  0.24209978 0.779824561 0.0191823070 0.9701936053
## 1322  0.24145309 0.780701754 0.0190712074 0.9701936053
## 875   0.24080571 0.781578947 0.0189604324 0.9701936053
## 363   0.24015763 0.782456140 0.0188499809 0.9701936053
## 462   0.23950884 0.783333333 0.0187398517 0.9701936053
## 674   0.23885934 0.784210526 0.0186300438 0.9701936053
## 1194  0.23820911 0.785087719 0.0185205560 0.9701936053
## 981   0.23755815 0.785964912 0.0184113872 0.9701936053
## 533   0.23690644 0.786842105 0.0183025364 0.9701936053
## 1284  0.23625399 0.787719298 0.0181940025 0.9701936053
## 1061  0.23560078 0.788596491 0.0180857843 0.9701936053
## 753   0.23494680 0.789473684 0.0179778809 0.9701936053
## 1016  0.23429205 0.790350877 0.0178702910 0.9701936053
## 1116  0.23363652 0.791228070 0.0177630137 0.9701936053
## 1270  0.23298019 0.792105263 0.0176560479 0.9701936053
## 342   0.23232307 0.792982456 0.0175493925 0.9701936053
## 1147  0.23166513 0.793859649 0.0174430465 0.9701936053
## 358   0.23100638 0.794736842 0.0173370088 0.9701936053
## 424   0.23034680 0.795614035 0.0172312784 0.9701936053
## 1478  0.22968638 0.796491228 0.0171258541 0.9701936053
## 595   0.22902512 0.797368421 0.0170207351 0.9701936053
## 1181  0.22836300 0.798245614 0.0169159202 0.9701936053
## 534   0.22770002 0.799122807 0.0168114084 0.9701936053
## 1119  0.22703616 0.800000000 0.0167071987 0.9701936053
## 236   0.22637142 0.800877193 0.0166032900 0.9701936053
## 347   0.22570578 0.801754386 0.0164996814 0.9701936053
## 769   0.22503924 0.802631579 0.0163963718 0.9701936053
## 1517  0.22437179 0.803508772 0.0162933603 0.9701936053
## 1077  0.22370342 0.804385965 0.0161906457 0.9701936053
## 637   0.22303410 0.805263158 0.0160882271 0.9701936053
## 467   0.22236385 0.806140351 0.0159861036 0.9701936053
## 466   0.22169264 0.807017544 0.0158842740 0.9701936053
## 406   0.22102046 0.807894737 0.0157827375 0.9701936053
## 904   0.22034731 0.808771930 0.0156814930 0.9701936053
## 998   0.21967317 0.809649123 0.0155805395 0.9701936053
## 1492  0.21899803 0.810526316 0.0154798762 0.9701936053
## 900   0.21832188 0.811403509 0.0153795019 0.9701936053
## 878   0.21764471 0.812280702 0.0152794157 0.9701936053
## 352   0.21696651 0.813157895 0.0151796167 0.9701936053
## 1000  0.21628726 0.814035088 0.0150801039 0.9701936053
## 354   0.21991404 0.814035088 0.0153198304 0.9761195889
## 1133  0.21924103 0.814912281 0.0152201739 0.9761195889
## 1081  0.21856701 0.815789474 0.0151208026 0.9761195889
## 1399  0.21789196 0.816666667 0.0150217153 0.9761195889
## 893   0.21721587 0.817543860 0.0149229113 0.9761195889
## 339   0.21653874 0.818421053 0.0148243895 0.9761195889
## 942   0.21586054 0.819298246 0.0147261491 0.9761195889
## 1186  0.21518127 0.820175439 0.0146281890 0.9761195889
## 877   0.21450091 0.821052632 0.0145305083 0.9761195889
## 1070  0.21381945 0.821929825 0.0144331061 0.9761195889
## 656   0.21313689 0.822807018 0.0143359815 0.9761195889
## 1509  0.21245320 0.823684211 0.0142391336 0.9761195889
## 310   0.21176837 0.824561404 0.0141425614 0.9761195889
## 71    0.21108239 0.825438596 0.0140462640 0.9761195889
## 881   0.21039526 0.826315789 0.0139502406 0.9761195889
## 1430  0.20970694 0.827192982 0.0138544901 0.9761195889
## 855   0.20901744 0.828070175 0.0137590117 0.9761195889
## 936   0.20832673 0.828947368 0.0136638045 0.9761195889
## 1260  0.20763481 0.829824561 0.0135688676 0.9761195889
## 25    0.20694166 0.830701754 0.0134742001 0.9761195889
## 704   0.20624726 0.831578947 0.0133798011 0.9761195889
## 386   0.20555160 0.832456140 0.0132856697 0.9761195889
## 410   0.20485467 0.833333333 0.0131918050 0.9761195889
## 1180  0.20415645 0.834210526 0.0130982062 0.9761195889
## 1103  0.20345692 0.835087719 0.0130048724 0.9761195889
## 747   0.20275608 0.835964912 0.0129118026 0.9761195889
## 1374  0.20205390 0.836842105 0.0128189961 0.9761195889
## 1382  0.20135037 0.837719298 0.0127264520 0.9761195889
## 341   0.20064547 0.838596491 0.0126341694 0.9761195889
## 480   0.20451795 0.838596491 0.0128626088 0.9820632202
## 374   0.20382086 0.839473684 0.0127701805 0.9820632202
## 1200  0.20312244 0.840350877 0.0126780128 0.9820632202
## 752   0.20242268 0.841228070 0.0125861048 0.9820632202
## 834   0.20172157 0.842105263 0.0124944556 0.9820632202
## 962   0.20101909 0.842982456 0.0124030644 0.9820632202
## 471   0.20031522 0.843859649 0.0123119303 0.9820632202
## 1273  0.19960994 0.844736842 0.0122210526 0.9820632202
## 570   0.19890325 0.845614035 0.0121304304 0.9820632202
## 1283  0.19819511 0.846491228 0.0120400628 0.9820632202
## 450   0.19748553 0.847368421 0.0119499490 0.9820632202
## 1256  0.19677446 0.848245614 0.0118600882 0.9820632202
## 1493  0.19606191 0.849122807 0.0117704796 0.9820632202
## 654   0.19534785 0.850000000 0.0116811222 0.9820632202
## 385   0.19463226 0.850877193 0.0115920155 0.9820632202
## 414   0.19391513 0.851754386 0.0115031584 0.9820632202
## 978   0.19319643 0.852631579 0.0114145501 0.9820632202
## 756   0.19247614 0.853508772 0.0113261900 0.9820632202
## 1528  0.19175425 0.854385965 0.0112380772 0.9820632202
## 702   0.19103074 0.855263158 0.0111502108 0.9820632202
## 839   0.19030558 0.856140351 0.0110625900 0.9820632202
## 694   0.18957876 0.857017544 0.0109752142 0.9820632202
## 176   0.18885025 0.857894737 0.0108880824 0.9820632202
## 1276  0.18812003 0.858771930 0.0108011939 0.9820632202
## 1265  0.18738809 0.859649123 0.0107145480 0.9820632202
## 796   0.18665439 0.860526316 0.0106281437 0.9820632202
## 614   0.18591892 0.861403509 0.0105419803 0.9820632202
## 1320  0.18518166 0.862280702 0.0104560572 0.9820632202
## 1188  0.18444257 0.863157895 0.0103703734 0.9820632202
## 1262  0.18370164 0.864035088 0.0102849282 0.9820632202
## 96    0.18295885 0.864912281 0.0101997208 0.9820632202
## 707   0.18221416 0.865789474 0.0101147505 0.9820632202
## 455   0.18146756 0.866666667 0.0100300165 0.9820632202
## 1408  0.18071902 0.867543860 0.0099455181 0.9820632202
## 198   0.17996851 0.868421053 0.0098612544 0.9820632202
## 389   0.17921600 0.869298246 0.0097772248 0.9820632202
## 916   0.17846148 0.870175439 0.0096934285 0.9820632202
## 513   0.17770491 0.871052632 0.0096098647 0.9820632202
## 911   0.17694627 0.871929825 0.0095265327 0.9820632202
## 646   0.17618552 0.872807018 0.0094434317 0.9820632202
## 215   0.17542264 0.873684211 0.0093605610 0.9820632202
## 1519  0.17465760 0.874561404 0.0092779199 0.9820632202
## 961   0.17389037 0.875438596 0.0091955076 0.9820632202
## 1302  0.17312092 0.876315789 0.0091133235 0.9820632202
## 110   0.17234921 0.877192982 0.0090313666 0.9820632202
## 1152  0.17157523 0.878070175 0.0089496365 0.9820632202
## 1449  0.17079892 0.878947368 0.0088681322 0.9820632202
## 84    0.17002027 0.879824561 0.0087868531 0.9820632202
## 795   0.16923924 0.880701754 0.0087057986 0.9820632202
## 1242  0.16845579 0.881578947 0.0086249677 0.9820632202
## 1222  0.16766989 0.882456140 0.0085443600 0.9820632202
## 350   0.16688151 0.883333333 0.0084639745 0.9820632202
## 1143  0.16609060 0.884210526 0.0083838107 0.9820632202
## 197   0.16529713 0.885087719 0.0083038678 0.9820632202
## 1383  0.16450107 0.885964912 0.0082241452 0.9820632202
## 1227  0.16290099 0.887719298 0.0080653578 0.9820632202
## 1231  0.16290099 0.887719298 0.0080653578 0.9820632202
## 6     0.16209690 0.888596491 0.0079862916 0.9820632202
## 1243  0.16129005 0.889473684 0.0079074429 0.9820632202
## 53    0.16048040 0.890350877 0.0078288109 0.9820632202
## 957   0.15966791 0.891228070 0.0077503950 0.9820632202
## 1312  0.15885254 0.892105263 0.0076721945 0.9820632202
## 19    0.15803423 0.892982456 0.0075942087 0.9820632202
## 744   0.15721295 0.893859649 0.0075164370 0.9820632202
## 1082  0.15638864 0.894736842 0.0074388785 0.9820632202
## 330   0.15556127 0.895614035 0.0073615328 0.9820632202
## 923   0.16028800 0.895614035 0.0075655206 0.9880244991
## 278   0.15947546 0.896491228 0.0074880274 0.9880244991
## 1384  0.15865998 0.897368421 0.0074107463 0.9880244991
## 1441  0.15784150 0.898245614 0.0073336766 0.9880244991
## 1433  0.15701998 0.899122807 0.0072568175 0.9880244991
## 872   0.15619537 0.900000000 0.0071801684 0.9880244991
## 449   0.15536762 0.900877193 0.0071037287 0.9880244991
## 409   0.15453667 0.901754386 0.0070274976 0.9880244991
## 912   0.15370249 0.902631579 0.0069514746 0.9880244991
## 554   0.15286500 0.903508772 0.0068756590 0.9880244991
## 201   0.15202416 0.904385965 0.0068000502 0.9880244991
## 669   0.15117991 0.905263158 0.0067246474 0.9880244991
## 919   0.15033219 0.906140351 0.0066494500 0.9880244991
## 1409  0.14948094 0.907017544 0.0065744575 0.9880244991
## 475   0.14862611 0.907894737 0.0064996691 0.9880244991
## 1436  0.14776762 0.908771930 0.0064250842 0.9880244991
## 334   0.14690541 0.909649123 0.0063507022 0.9880244991
## 840   0.14603942 0.910526316 0.0062765225 0.9880244991
## 316   0.14516958 0.911403509 0.0062025444 0.9880244991
## 1195  0.14429582 0.912280702 0.0061287673 0.9880244991
## 585   0.14341807 0.913157895 0.0060551906 0.9880244991
## 1126  0.14860415 0.913157895 0.0062525384 0.9940034257
## 1426  0.14774663 0.914035088 0.0061788152 0.9940034257
## 1377  0.14688533 0.914912281 0.0061052918 0.9940034257
## 1010  0.14602020 0.915789474 0.0060319675 0.9940034257
## 1098  0.14515115 0.916666667 0.0059588418 0.9940034257
## 766   0.14427812 0.917543860 0.0058859139 0.9940034257
## 1527  0.14340103 0.918421053 0.0058131833 0.9940034257
## 26    0.14251981 0.919298246 0.0057406495 0.9940034257
## 838   0.14163437 0.920175439 0.0056683116 0.9940034257
## 1440  0.14074464 0.921052632 0.0055961693 0.9940034257
## 1102  0.13985053 0.921929825 0.0055242218 0.9940034257
## 492   0.13895195 0.922807018 0.0054524686 0.9940034257
## 1512  0.13804883 0.923684211 0.0053809090 0.9940034257
## 854   0.13714106 0.924561404 0.0053095425 0.9940034257
## 1043  0.13622855 0.925438596 0.0052383684 0.9940034257
## 340   0.13531120 0.926315789 0.0051673862 0.9940034257
## 910   0.13438892 0.927192982 0.0050965953 0.9940034257
## 678   0.13346160 0.928070175 0.0050259951 0.9940034257
## 1387  0.13252913 0.928947368 0.0049555849 0.9940034257
## 1315  0.13159141 0.929824561 0.0048853643 0.9940034257
## 78    0.13064832 0.930701754 0.0048153326 0.9940034257
## 1359  0.12969974 0.931578947 0.0047454893 0.9940034257
## 11    0.12874554 0.932456140 0.0046758337 0.9940034257
## 1040  0.12778561 0.933333333 0.0046063654 0.9940034257
## 1515  0.12681982 0.934210526 0.0045370836 0.9940034257
## 832   0.12584801 0.935087719 0.0044679879 0.9940034257
## 550   0.12487007 0.935964912 0.0043990777 0.9940034257
## 83    0.12388584 0.936842105 0.0043303524 0.9940034257
## 918   0.12289516 0.937719298 0.0042618114 0.9940034257
## 590   0.12189789 0.938596491 0.0041934542 0.9940034257
## 1039  0.12089386 0.939473684 0.0041252802 0.9940034257
## 1507  0.11988290 0.940350877 0.0040572889 0.9940034257
## 1165  0.11886483 0.941228070 0.0039894797 0.9940034257
## 1166  0.11783948 0.942105263 0.0039218520 0.9940034257
## 531   0.11680665 0.942982456 0.0038544054 0.9940034257
## 515   0.11576614 0.943859649 0.0037871391 0.9940034257
## 1074  0.11471774 0.944736842 0.0037200527 0.9940034257
## 279   0.11366125 0.945614035 0.0036531457 0.9940034257
## 1100  0.11259643 0.946491228 0.0035864175 0.9940034257
## 582   0.11152304 0.947368421 0.0035198675 0.9940034257
## 1438  0.11044086 0.948245614 0.0034534953 0.9940034257
## 1431  0.10934960 0.949122807 0.0033873002 0.9940034257
## 1146  0.10824901 0.950000000 0.0033212817 0.9940034257
## 1234  0.10713881 0.950877193 0.0032554393 0.9940034257
## 1385  0.10601869 0.951754386 0.0031897725 0.9940034257
## 555   0.10488835 0.952631579 0.0031242807 0.9940034257
## 714   0.10374746 0.953508772 0.0030589634 0.9940034257
## 1446  0.10259567 0.954385965 0.0029938201 0.9940034257
## 384   0.10143262 0.955263158 0.0029288502 0.9940034257
## 676   0.10025794 0.956140351 0.0028640532 0.9940034257
## 1523  0.09907121 0.957017544 0.0027994286 0.9940034257
## 624   0.09787202 0.957894737 0.0027349759 0.9940034257
## 1343  0.09665992 0.958771930 0.0026706945 0.9940034257
## 271   0.09543442 0.959649123 0.0026065840 0.9940034257
## 748   0.09419503 0.960526316 0.0025426438 0.9940034257
## 980   0.09294120 0.961403509 0.0024788734 0.9940034257
## 1404  0.09167238 0.962280702 0.0024152723 0.9940034257
## 733   0.09038795 0.963157895 0.0023518400 0.9940034257
## 673   0.08908726 0.964035088 0.0022885760 0.9940034257
## 667   0.08776963 0.964912281 0.0022254798 0.9940034257
## 346   0.08643432 0.965789474 0.0021625508 0.9940034257
## 1366  0.08508054 0.966666667 0.0020997885 0.9940034257
## 1443  0.08370744 0.967543860 0.0020371926 0.9940034257
## 332   0.08231410 0.968421053 0.0019747624 0.9940034257
## 1206  0.09079372 0.968421053 0.0021519178 1.0000000000
## 1196  0.08949387 0.969298246 0.0020893443 1.0000000000
## 594   0.08817664 0.970175439 0.0020269363 1.0000000000
## 521   0.08684123 0.971052632 0.0019646930 1.0000000000
## 551   0.08548678 0.971929825 0.0019026141 1.0000000000
## 1183  0.08411238 0.972807018 0.0018406991 1.0000000000
## 1080  0.08271702 0.973684211 0.0017789474 1.0000000000
## 648   0.08129962 0.974561404 0.0017173585 1.0000000000
## 885   0.07985901 0.975438596 0.0016559321 1.0000000000
## 1121  0.07839390 0.976315789 0.0015946676 1.0000000000
## 1324  0.07690289 0.977192982 0.0015335645 1.0000000000
## 593   0.07538443 0.978070175 0.0014726223 1.0000000000
## 915   0.07383682 0.978947368 0.0014118406 1.0000000000
## 1021  0.07225821 0.979824561 0.0013512188 1.0000000000
## 1405  0.07064648 0.980701754 0.0012907566 1.0000000000
## 611   0.06899934 0.981578947 0.0012304534 1.0000000000
## 777   0.06731416 0.982456140 0.0011703088 1.0000000000
## 408   0.06558801 0.983333333 0.0011103222 1.0000000000
## 1346  0.06381757 0.984210526 0.0010504933 1.0000000000
## 1286  0.06199903 0.985087719 0.0009908215 1.0000000000
## 302   0.06012802 0.985964912 0.0009313064 1.0000000000
## 1163  0.05819949 0.986842105 0.0008719475 1.0000000000
## 631   0.05620750 0.987719298 0.0008127444 1.0000000000
## 871   0.05414505 0.988596491 0.0007536966 1.0000000000
## 351   0.05200374 0.989473684 0.0006948036 1.0000000000
## 1023  0.04977340 0.990350877 0.0006360650 1.0000000000
## 619   0.04744146 0.991228070 0.0005774803 1.0000000000
## 1347  0.04499213 0.992105263 0.0005190491 1.0000000000
## 1357  0.04240505 0.992982456 0.0004607709 1.0000000000
## 1363  0.03965326 0.993859649 0.0004026453 1.0000000000
## 677   0.03669974 0.994736842 0.0003446717 1.0000000000
## 345   0.03349114 0.995614035 0.0002868499 1.0000000000
## 572   0.02994557 0.996491228 0.0002291792 1.0000000000
## 1445  0.02592513 0.997368421 0.0001716594 1.0000000000
## 1529  0.02116085 0.998245614 0.0001142898 1.0000000000
## 857   0.01495809 0.999122807 0.0000570702 1.0000000000
## 1120         NaN 1.000000000 0.0000000000 1.0000000000
## 
## 
## [[1]]$optres
## [[1]]$optres$Group1
##                Score        CI
## SENS           0.705 0.66-0.75
## SPEC           0.774  0.75-0.8
## MCC            0.438      <NA>
## Informedness   0.479      <NA>
## PREC           0.516 0.47-0.56
## NPV            0.885  0.86-0.9
## FPR            0.226      <NA>
## F1             0.596      <NA>
## TP           275.000      <NA>
## FP           258.000      <NA>
## TN           882.000      <NA>
## FN           115.000      <NA>
## AUC-ROC        0.820 0.79-0.85
## AUC-PR         0.660      <NA>
## AUC-PRG        0.200      <NA>
## 
## 
## [[1]]$stdres
## [[1]]$stdres$Group1
##                Score        CI
## SENS           0.613 0.56-0.66
## SPEC           0.845 0.82-0.86
## MCC            0.448      <NA>
## Informedness   0.458      <NA>
## PREC           0.575 0.53-0.62
## NPV            0.864 0.84-0.88
## FPR            0.155      <NA>
## F1             0.593      <NA>
## TP           239.000      <NA>
## FP           177.000      <NA>
## TN           963.000      <NA>
## FN           151.000      <NA>
## AUC-ROC        0.820 0.79-0.85
## AUC-PR         0.660      <NA>
## AUC-PRG        0.200      <NA>
## 
## 
## 
## [[2]]
## [[2]]$roc

## 
## [[2]]$proc

## 
## [[2]]$prg

## 
## [[2]]$cc

## 
## [[2]]$probs
## [[2]]$probs$Group1
##            one       zero  obs  Group TP TN FP FN      SENS       SPEC
## 35 0.988994896 0.01100510  one Group1  1 28  0  8 0.1111111 1.00000000
## 32 0.982201397 0.01779860  one Group1  2 28  0  7 0.2222222 1.00000000
## 34 0.934983850 0.06501615  one Group1  3 28  0  6 0.3333333 1.00000000
## 10 0.874991119 0.12500888 zero Group1  3 27  1  6 0.3333333 0.96428571
## 30 0.803538203 0.19646180  one Group1  4 27  1  5 0.4444444 0.96428571
## 17 0.715169370 0.28483063 zero Group1  4 26  2  5 0.4444444 0.92857143
## 6  0.650673926 0.34932607 zero Group1  4 25  3  5 0.4444444 0.89285714
## 37 0.636534214 0.36346579  one Group1  5 25  3  4 0.5555556 0.89285714
## 31 0.631695092 0.36830491  one Group1  6 25  3  3 0.6666667 0.89285714
## 29 0.569927990 0.43007201  one Group1  7 25  3  2 0.7777778 0.89285714
## 36 0.525419474 0.47458053  one Group1  8 25  3  1 0.8888889 0.89285714
## 28 0.505425632 0.49457437 zero Group1  8 24  4  1 0.8888889 0.85714286
## 11 0.489919871 0.51008013 zero Group1  8 23  5  1 0.8888889 0.82142857
## 13 0.467032075 0.53296793 zero Group1  8 22  6  1 0.8888889 0.78571429
## 1  0.439720094 0.56027991 zero Group1  8 21  7  1 0.8888889 0.75000000
## 23 0.409953415 0.59004658 zero Group1  8 20  8  1 0.8888889 0.71428571
## 22 0.367698193 0.63230181 zero Group1  8 19  9  1 0.8888889 0.67857143
## 7  0.360370964 0.63962904 zero Group1  8 18 10  1 0.8888889 0.64285714
## 5  0.355124831 0.64487517 zero Group1  8 17 11  1 0.8888889 0.60714286
## 27 0.327409774 0.67259023 zero Group1  8 16 12  1 0.8888889 0.57142857
## 8  0.246230468 0.75376953 zero Group1  8 15 13  1 0.8888889 0.53571429
## 4  0.223814055 0.77618594 zero Group1  8 14 14  1 0.8888889 0.50000000
## 14 0.218553826 0.78144617 zero Group1  8 13 15  1 0.8888889 0.46428571
## 21 0.208070070 0.79192993 zero Group1  8 12 16  1 0.8888889 0.42857143
## 3  0.191188201 0.80881180 zero Group1  8 11 17  1 0.8888889 0.39285714
## 20 0.161306307 0.83869369 zero Group1  8 10 18  1 0.8888889 0.35714286
## 33 0.148006335 0.85199367  one Group1  9 10 18  0 1.0000000 0.35714286
## 18 0.116645359 0.88335464 zero Group1  9  9 19  0 1.0000000 0.32142857
## 24 0.116289780 0.88371022 zero Group1  9  8 20  0 1.0000000 0.28571429
## 26 0.073328637 0.92667136 zero Group1  9  7 21  0 1.0000000 0.25000000
## 9  0.013380090 0.98661991 zero Group1  9  6 22  0 1.0000000 0.21428571
## 12 0.013373596 0.98662640 zero Group1  9  5 23  0 1.0000000 0.17857143
## 19 0.007345590 0.99265441 zero Group1  9  4 24  0 1.0000000 0.14285714
## 25 0.003475519 0.99652448 zero Group1  9  3 25  0 1.0000000 0.10714286
## 15 0.003426758 0.99657324 zero Group1  9  2 26  0 1.0000000 0.07142857
## 16 0.002749826 0.99725017 zero Group1  9  1 27  0 1.0000000 0.03571429
## 2  0.002099160 0.99790084 zero Group1  9  0 28  0 1.0000000 0.00000000
##    Informedness      PREC       NPV      MARK        F1        MCC        FPR
## 35   0.11111111 1.0000000 0.7777778 0.7777778 0.2000000 0.29397237 0.00000000
## 32   0.22222222 1.0000000 0.8000000 0.8000000 0.3636364 0.42163702 0.00000000
## 34   0.33333333 1.0000000 0.8235294 0.8235294 0.5000000 0.52393683 0.00000000
## 10   0.29761905 0.7500000 0.8181818 0.5681818 0.4615385 0.41121981 0.03571429
## 30   0.40873016 0.8000000 0.8437500 0.6437500 0.5714286 0.51295228 0.03571429
## 17   0.37301587 0.6666667 0.8387097 0.5053763 0.5333333 0.43418130 0.07142857
## 6    0.33730159 0.5714286 0.8333333 0.4047619 0.5000000 0.36949538 0.10714286
## 37   0.44841270 0.6250000 0.8620690 0.4870690 0.5882353 0.46734132 0.10714286
## 31   0.55952381 0.6666667 0.8928571 0.5595238 0.6666667 0.55952381 0.10714286
## 29   0.67063492 0.7000000 0.9259259 0.6259259 0.7368421 0.64789489 0.10714286
## 36   0.78174603 0.7272727 0.9615385 0.6888112 0.8000000 0.73380884 0.10714286
## 28   0.74603175 0.6666667 0.9600000 0.6266667 0.7619048 0.68374939 0.14285714
## 11   0.71031746 0.6153846 0.9583333 0.5737179 0.7272727 0.63837440 0.17857143
## 13   0.67460317 0.5714286 0.9565217 0.5279503 0.6956522 0.59678887 0.21428571
## 1    0.63888889 0.5333333 0.9545455 0.4878788 0.6666667 0.55830130 0.25000000
## 23   0.60317460 0.5000000 0.9523810 0.4523810 0.6400000 0.52236453 0.28571429
## 22   0.56746032 0.4705882 0.9500000 0.4205882 0.6153846 0.48853570 0.32142857
## 7    0.53174603 0.4444444 0.9473684 0.3918129 0.5925926 0.45644817 0.35714286
## 5    0.49603175 0.4210526 0.9444444 0.3654971 0.5714286 0.42579121 0.39285714
## 27   0.46031746 0.4000000 0.9411765 0.3411765 0.5517241 0.39629470 0.42857143
## 8    0.42460317 0.3809524 0.9375000 0.3184524 0.5333333 0.36771714 0.46428571
## 4    0.38888889 0.3636364 0.9333333 0.2969697 0.5161290 0.33983557 0.50000000
## 14   0.35317460 0.3478261 0.9285714 0.2763975 0.5000000 0.31243653 0.53571429
## 21   0.31746032 0.3333333 0.9230769 0.2564103 0.4848485 0.28530700 0.57142857
## 3    0.28174603 0.3200000 0.9166667 0.2366667 0.4705882 0.25822450 0.60714286
## 20   0.24603175 0.3076923 0.9090909 0.2167832 0.4571429 0.23094491 0.64285714
## 33   0.35714286 0.3333333 1.0000000 0.3333333 0.5000000 0.34503278 0.64285714
## 18   0.32142857 0.3214286 1.0000000 0.3214286 0.4864865 0.32142857 0.67857143
## 24   0.28571429 0.3103448 1.0000000 0.3103448 0.4736842 0.29777500 0.71428571
## 26   0.25000000 0.3000000 1.0000000 0.3000000 0.4615385 0.27386128 0.75000000
## 9    0.21428571 0.2903226 1.0000000 0.2903226 0.4500000 0.24942330 0.78571429
## 12   0.17857143 0.2812500 1.0000000 0.2812500 0.4390244 0.22410536 0.82142857
## 19   0.14285714 0.2727273 1.0000000 0.2727273 0.4285714 0.19738551 0.85714286
## 25   0.10714286 0.2647059 1.0000000 0.2647059 0.4186047 0.16840827 0.89285714
## 15   0.07142857 0.2571429 1.0000000 0.2571429 0.4090909 0.13552619 0.92857143
## 16   0.03571429 0.2500000 1.0000000 0.2500000 0.4000000 0.09449112 0.96428571
## 2    0.00000000 0.2432432 0.0000000       NaN 0.3913043        NaN 1.00000000
##             PG         RG
## 35 1.000000000 0.00000000
## 32 1.000000000 0.00000000
## 34 1.000000000 0.03968254
## 10 0.502232143 0.03968254
## 30 0.588571429 0.11816578
## 17 0.373015873 0.11816578
## 6  0.247813411 0.11816578
## 37 0.315290179 0.22927690
## 31 0.373015873 0.37301587
## 29 0.422500000 0.54938272
## 36 0.465171192 0.75837743
## 28 0.373015873 0.75837743
## 11 0.302620456 0.75837743
## 13 0.247813411 0.75837743
## 1  0.204444444 0.75837743
## 23 0.169642857 0.75837743
## 22 0.141374197 0.75837743
## 7  0.118165785 0.75837743
## 5  0.098931539 0.75837743
## 27 0.082857143 0.75837743
## 8  0.069322967 0.75837743
## 4  0.057851240 0.75837743
## 14 0.048069133 0.75837743
## 21 0.039682540 0.75837743
## 3  0.032457143 0.75837743
## 20 0.026204565 0.75837743
## 33 0.039682540 1.00000000
## 18 0.033208819 1.00000000
## 24 0.027518261 1.00000000
## 26 0.022500000 1.00000000
## 9  0.018061543 1.00000000
## 12 0.014125279 1.00000000
## 19 0.010625738 1.00000000
## 25 0.007507415 1.00000000
## 15 0.004723032 1.00000000
## 16 0.002232143 1.00000000
## 2  0.000000000 1.00000000
## 
## 
## [[2]]$optres
## [[2]]$optres$Group1
##               Score        CI
## SENS          0.889 0.57-0.98
## SPEC          0.893 0.73-0.96
## MCC           0.734      <NA>
## Informedness  0.782      <NA>
## PREC          0.727  0.43-0.9
## NPV           0.962 0.81-0.99
## FPR           0.107      <NA>
## F1            0.800      <NA>
## TP            8.000      <NA>
## FP            3.000      <NA>
## TN           25.000      <NA>
## FN            1.000      <NA>
## AUC-ROC       0.880 0.73-1.03
## AUC-PR        0.640      <NA>
## AUC-PRG       0.350      <NA>
## 
## 
## [[2]]$stdres
## [[2]]$stdres$Group1
##               Score        CI
## SENS          0.889 0.57-0.98
## SPEC          0.857 0.69-0.94
## MCC           0.684      <NA>
## Informedness  0.746      <NA>
## PREC          0.667 0.39-0.86
## NPV           0.960  0.8-0.99
## FPR           0.143      <NA>
## F1            0.762      <NA>
## TP            8.000      <NA>
## FP            4.000      <NA>
## TN           24.000      <NA>
## FN            1.000      <NA>
## AUC-ROC       0.880 0.73-1.03
## AUC-PR        0.640      <NA>
## AUC-PRG       0.350      <NA>